Skip to content

Commit cdb5323

Browse files
committed
v1.7.3
1 parent 3eee0f6 commit cdb5323

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.7.3] - 2023-04-13
9+
10+
### Bug fixes
11+
12+
- Fix off by one error when grouping activity by hour (@ablearthy #74)
13+
- Add psql client on the ARM image (#71)
14+
815
## [1.7.2] - 2022-09-17
916

1017
### Bug fixes

README.md

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

59-
Deploying on ARM is also possible using the `mujx/hakatime:latest-arm` or `mujx/hakatime:v1.7.2-arm` image or the dedicated
59+
Deploying on ARM is also possible using the `mujx/hakatime:latest-arm` or `mujx/hakatime:v1.7.3-arm` image or the dedicated
6060
Dockerfile ([`Dockerfile.arm`](/Dockerfile.arm)) to build the image.
6161

6262
```yaml
6363
version: "3"
6464
services:
6565
server:
6666
container_name: hakatime
67-
image: mujx/hakatime:v1.7.2
67+
image: mujx/hakatime:v1.7.3
6868
environment:
6969
# DB settings.
7070
HAKA_DB_HOST: haka_db
@@ -148,7 +148,7 @@ npm run prod
148148
## CLI options
149149

150150
```
151-
hakatime :: v1.7.2
151+
hakatime :: v1.7.3
152152
153153
Usage: hakatime COMMAND
154154
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.7.2",
3+
"version": "1.7.3",
44
"description": "Dashboard for Hakatime",
55
"author": "Konstantinos Sideris <[email protected]>",
66
"license": "UNLICENSE",

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.7.2";
14+
version = "1.7.3";
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.7.2
3+
version: 1.7.3
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)