Skip to content

Commit

Permalink
Release 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantinos Sideris committed Aug 31, 2021
1 parent 6c5028f commit a44dabd
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ 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
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
Expand Down Expand Up @@ -146,7 +146,7 @@ npm run prod
## CLI options

```
hakatime :: v1.5.0
hakatime :: v1.6.0

Usage: hakatime COMMAND
Wakatime server implementation
Expand Down
2 changes: 1 addition & 1 deletion dashboard/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dashboard",
"version": "1.5.0",
"version": "1.6.0",
"description": "Dashboard for Hakatime",
"main": "index.js",
"author": "Konstantinos Sideris <siderisk@auth.gr>",
Expand Down
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}:
mkDerivation {
pname = "hakatime";
version = "1.5.0";
version = "1.6.0";
src = ./.;
isLibrary = true;
isExecutable = true;
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion hakatime.cabal
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit a44dabd

Please sign in to comment.