diff --git a/CHANGELOG.md b/CHANGELOG.md index e3319bb..987f296 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.6.0] - 2021-08-31 + +### Features + +- Add ability to view aggregated project data with tags (instead of aliases) (#32) + To use, set a common tag on the projects you want to view as one and select the tag on the + Projects page. + ## [1.5.0] - 2021-08-08 ### Features diff --git a/README.md b/README.md index fe70f3d..6556db1 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.5.0-arm` image or the dedicated +Deploying on ARM is also possible using the `mujx/hakatime:latest-arm` or `mujx/hakatime:v1.6.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.5.0 + image: mujx/hakatime:v1.6.0 environment: # DB settings. HAKA_DB_HOST: haka_db @@ -146,7 +146,7 @@ npm run prod ## CLI options ``` -hakatime :: v1.5.0 +hakatime :: v1.6.0 Usage: hakatime COMMAND Wakatime server implementation diff --git a/dashboard/package.json b/dashboard/package.json index f1a1229..fc9d5ce 100644 --- a/dashboard/package.json +++ b/dashboard/package.json @@ -1,6 +1,6 @@ { "name": "dashboard", - "version": "1.5.0", + "version": "1.6.0", "description": "Dashboard for Hakatime", "main": "index.js", "author": "Konstantinos Sideris ", diff --git a/default.nix b/default.nix index 0d053fa..0b6e524 100644 --- a/default.nix +++ b/default.nix @@ -11,7 +11,7 @@ }: mkDerivation { pname = "hakatime"; - version = "1.5.0"; + version = "1.6.0"; src = ./.; isLibrary = true; isExecutable = true; diff --git a/docker-compose-deploy.yml b/docker-compose-deploy.yml index 35032bf..657fcbe 100644 --- a/docker-compose-deploy.yml +++ b/docker-compose-deploy.yml @@ -2,7 +2,7 @@ version: "3" services: server: container_name: hakatime - image: mujx/hakatime:v1.5.0 + image: mujx/hakatime:v1.6.0 environment: # DB settings. HAKA_DB_HOST: haka_db diff --git a/hakatime.cabal b/hakatime.cabal index 2f6f155..079c800 100644 --- a/hakatime.cabal +++ b/hakatime.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: hakatime -version: 1.5.0 +version: 1.6.0 synopsis: Wakatime API server implementation / Dashboard UI description: Wakatime compatible server with an analytics dashboard. license: Unlicense