diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b4a30d..8256e0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.7.0] - 2021-10-25 + +### Features + +- Add endpoint to show the time spent on the current day on the VS Code statusbar. (#50) + ## [1.6.3] - 2021-10-16 This release should fix the issues encountered using the new wakatime-cli. diff --git a/README.md b/README.md index 1027606..f253b71 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,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.6.3-arm` image or the dedicated +Deploying on ARM is also possible using the `mujx/hakatime:latest-arm` or `mujx/hakatime:v1.7.0-arm` image or the dedicated Dockerfile ([`Dockerfile.arm`](/Dockerfile.arm)) to build the image. ```yaml @@ -62,7 +62,7 @@ version: "3" services: server: container_name: hakatime - image: mujx/hakatime:v1.6.3 + image: mujx/hakatime:v1.7.0 environment: # DB settings. HAKA_DB_HOST: haka_db @@ -146,7 +146,7 @@ npm run prod ## CLI options ``` -hakatime :: v1.6.3 +hakatime :: v1.7.0 Usage: hakatime COMMAND Wakatime server implementation diff --git a/dashboard/package.json b/dashboard/package.json index 84f4cb2..c545f47 100644 --- a/dashboard/package.json +++ b/dashboard/package.json @@ -1,6 +1,6 @@ { "name": "dashboard", - "version": "1.6.3", + "version": "1.7.0", "description": "Dashboard for Hakatime", "main": "index.js", "author": "Konstantinos Sideris ", diff --git a/default.nix b/default.nix index 00c64ab..dea7de3 100644 --- a/default.nix +++ b/default.nix @@ -11,7 +11,7 @@ }: mkDerivation { pname = "hakatime"; - version = "1.6.3"; + version = "1.7.0"; src = ./.; isLibrary = true; isExecutable = true; diff --git a/hakatime.cabal b/hakatime.cabal index 14e2faf..c62f1f6 100644 --- a/hakatime.cabal +++ b/hakatime.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: hakatime -version: 1.6.3 +version: 1.7.0 synopsis: Wakatime API server implementation / Dashboard UI description: Wakatime compatible server with an analytics dashboard. license: Unlicense