From cdb5323c9c039f3049e335b53ac58c5f7a62f605 Mon Sep 17 00:00:00 2001 From: mujx <6430350+mujx@users.noreply.github.com> Date: Thu, 13 Apr 2023 18:01:57 +0000 Subject: [PATCH] v1.7.3 --- CHANGELOG.md | 7 +++++++ README.md | 6 +++--- dashboard/package.json | 2 +- default.nix | 2 +- hakatime.cabal | 2 +- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6057794..0a6338b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index b238006..8af736a 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,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.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 @@ -64,7 +64,7 @@ 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 @@ -148,7 +148,7 @@ npm run prod ## CLI options ``` -hakatime :: v1.7.2 +hakatime :: v1.7.3 Usage: hakatime COMMAND Wakatime server implementation diff --git a/dashboard/package.json b/dashboard/package.json index c474d8e..850087f 100644 --- a/dashboard/package.json +++ b/dashboard/package.json @@ -1,6 +1,6 @@ { "name": "dashboard", - "version": "1.7.2", + "version": "1.7.3", "description": "Dashboard for Hakatime", "author": "Konstantinos Sideris ", "license": "UNLICENSE", diff --git a/default.nix b/default.nix index f5cd290..dedf6de 100644 --- a/default.nix +++ b/default.nix @@ -11,7 +11,7 @@ }: mkDerivation { pname = "hakatime"; - version = "1.7.2"; + version = "1.7.3"; src = ./.; isLibrary = true; isExecutable = true; diff --git a/hakatime.cabal b/hakatime.cabal index 60ac347..08660ff 100644 --- a/hakatime.cabal +++ b/hakatime.cabal @@ -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