Skip to content

Commit

Permalink
v1.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mujx committed Apr 13, 2023
1 parent 3eee0f6 commit cdb5323
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.7.3] - 2023-04-13

### Bug fixes

- Fix off by one error when grouping activity by hour (@ablearthy #74)
- Add psql client on the ARM image (#71)

## [1.7.2] - 2022-09-17

### Bug fixes
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,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.7.2-arm` image or the dedicated
Deploying on ARM is also possible using the `mujx/hakatime:latest-arm` or `mujx/hakatime:v1.7.3-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.7.2
image: mujx/hakatime:v1.7.3
environment:
# DB settings.
HAKA_DB_HOST: haka_db
Expand Down Expand Up @@ -148,7 +148,7 @@ npm run prod
## CLI options

```
hakatime :: v1.7.2
hakatime :: v1.7.3
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.7.2",
"version": "1.7.3",
"description": "Dashboard for Hakatime",
"author": "Konstantinos Sideris <siderisk@auth.gr>",
"license": "UNLICENSE",
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.7.2";
version = "1.7.3";
src = ./.;
isLibrary = true;
isExecutable = true;
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.7.2
version: 1.7.3
synopsis: Wakatime API server implementation / Dashboard UI
description: Wakatime compatible server with an analytics dashboard.
license: Unlicense
Expand Down

0 comments on commit cdb5323

Please sign in to comment.