Skip to content

Commit bf0f087

Browse files
committed
Release 1.7.0
1 parent 4cf8b7f commit bf0f087

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.7.0] - 2021-10-25
11+
12+
### Features
13+
14+
- Add endpoint to show the time spent on the current day on the VS Code statusbar. (#50)
15+
1016
## [1.6.3] - 2021-10-16
1117

1218
This release should fix the issues encountered using the new wakatime-cli.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ You can use the following docker-compose setup for testing locally or an actual
5454
deployment. Change `HAKA_BADGE_URL` to match the actual external endpoint of your
5555
instance.
5656

57-
Deploying on ARM is also possible using the `mujx/hakatime:latest-arm` or `mujx/hakatime:v1.6.3-arm` image or the dedicated
57+
Deploying on ARM is also possible using the `mujx/hakatime:latest-arm` or `mujx/hakatime:v1.7.0-arm` image or the dedicated
5858
Dockerfile ([`Dockerfile.arm`](/Dockerfile.arm)) to build the image.
5959

6060
```yaml
6161
version: "3"
6262
services:
6363
server:
6464
container_name: hakatime
65-
image: mujx/hakatime:v1.6.3
65+
image: mujx/hakatime:v1.7.0
6666
environment:
6767
# DB settings.
6868
HAKA_DB_HOST: haka_db
@@ -146,7 +146,7 @@ npm run prod
146146
## CLI options
147147

148148
```
149-
hakatime :: v1.6.3
149+
hakatime :: v1.7.0
150150
151151
Usage: hakatime COMMAND
152152
Wakatime server implementation

dashboard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dashboard",
3-
"version": "1.6.3",
3+
"version": "1.7.0",
44
"description": "Dashboard for Hakatime",
55
"main": "index.js",
66
"author": "Konstantinos Sideris <[email protected]>",

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}:
1212
mkDerivation {
1313
pname = "hakatime";
14-
version = "1.6.3";
14+
version = "1.7.0";
1515
src = ./.;
1616
isLibrary = true;
1717
isExecutable = true;

hakatime.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: hakatime
3-
version: 1.6.3
3+
version: 1.7.0
44
synopsis: Wakatime API server implementation / Dashboard UI
55
description: Wakatime compatible server with an analytics dashboard.
66
license: Unlicense

0 commit comments

Comments
 (0)