diff --git a/CHANGELOG.md b/CHANGELOG.md index 8256e0f..53dfdcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [1.7.1] - 2022-04-10 + +### Bug fixes + +- Add `url` heartbeat type (thanks @georgy-komarov, #59) ## [1.7.0] - 2021-10-25 diff --git a/README.md b/README.md index d609a77..554153f 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ You can use the following docker-compose setup for testing locally or an actual deployment. Change `HAKA_BADGE_URL` to match the actual external endpoint of your instance. -Deploying on ARM is also possible using the `mujx/hakatime:latest-arm` or `mujx/hakatime:v1.7.0-arm` image or the dedicated +Deploying on ARM is also possible using the `mujx/hakatime:latest-arm` or `mujx/hakatime:v1.7.1-arm` image or the dedicated Dockerfile ([`Dockerfile.arm`](/Dockerfile.arm)) to build the image. ```yaml @@ -63,7 +63,7 @@ version: "3" services: server: container_name: hakatime - image: mujx/hakatime:v1.7.0 + image: mujx/hakatime:v1.7.1 environment: # DB settings. HAKA_DB_HOST: haka_db @@ -147,7 +147,7 @@ npm run prod ## CLI options ``` -hakatime :: v1.7.0 +hakatime :: v1.7.1 Usage: hakatime COMMAND Wakatime server implementation diff --git a/dashboard/package.json b/dashboard/package.json index 4c9385f..a2759f3 100644 --- a/dashboard/package.json +++ b/dashboard/package.json @@ -1,6 +1,6 @@ { "name": "dashboard", - "version": "1.7.0", + "version": "1.7.1", "description": "Dashboard for Hakatime", "author": "Konstantinos Sideris ", "license": "UNLICENSE", diff --git a/default.nix b/default.nix index dea7de3..5bffe98 100644 --- a/default.nix +++ b/default.nix @@ -11,7 +11,7 @@ }: mkDerivation { pname = "hakatime"; - version = "1.7.0"; + version = "1.7.1"; src = ./.; isLibrary = true; isExecutable = true; diff --git a/hakatime.cabal b/hakatime.cabal index c62f1f6..2fba211 100644 --- a/hakatime.cabal +++ b/hakatime.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: hakatime -version: 1.7.0 +version: 1.7.1 synopsis: Wakatime API server implementation / Dashboard UI description: Wakatime compatible server with an analytics dashboard. license: Unlicense