Skip to content

Commit 6bc7d95

Browse files
committed
Merge branch 'release-1.7.2'
2 parents 93d8fd1 + 9052f19 commit 6bc7d95

File tree

5 files changed

+17
-11
lines changed

5 files changed

+17
-11
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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.2] - 2022-09-17
9+
10+
### Bug fixes
11+
12+
- Convert projects with empty name to 'Unknown project' (#62)
13+
814
## [1.7.1] - 2022-04-10
915

1016
### Bug fixes

README.md

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

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

6161
```yaml
6262
version: "3"
6363
services:
6464
server:
6565
container_name: hakatime
66-
image: mujx/hakatime:v1.7.1
66+
image: mujx/hakatime:v1.7.2
6767
environment:
6868
# DB settings.
6969
HAKA_DB_HOST: haka_db
@@ -147,7 +147,7 @@ npm run prod
147147
## CLI options
148148

149149
```
150-
hakatime :: v1.7.1
150+
hakatime :: v1.7.2
151151
152152
Usage: hakatime COMMAND
153153
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.1",
3+
"version": "1.7.2",
44
"description": "Dashboard for Hakatime",
55
"author": "Konstantinos Sideris <[email protected]>",
66
"license": "UNLICENSE",

default.nix

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
, case-insensitive, containers, contravariant-extras, cookie
33
, cryptonite, fakedata, file-embed, hasql, hasql-pool, hasql-queue
44
, hasql-transaction, http-client, http-client-tls, http-media
5-
, http-types, katip, lib, modern-uri, mr-env, optparse-applicative
5+
, http-types, katip, modern-uri, mr-env, optparse-applicative
66
, postgresql-binary, postgresql-simple, postgresql-simple-migration
77
, random, raw-strings-qq, relude, req, safe-exceptions, servant
8-
, servant-client, servant-server, system-filepath, text, time, unix
9-
, uuid, uuid-types, vector, wai, wai-cors, wai-extra, wai-logger
10-
, warp
8+
, servant-client, servant-server, stdenv, system-filepath, text
9+
, time, unix, uuid, uuid-types, vector, wai, wai-cors, wai-extra
10+
, wai-logger, warp
1111
}:
1212
mkDerivation {
1313
pname = "hakatime";
14-
version = "1.7.1";
14+
version = "1.7.2";
1515
src = ./.;
1616
isLibrary = true;
1717
isExecutable = true;
@@ -34,5 +34,5 @@ mkDerivation {
3434
doHaddock = false;
3535
doCheck = false;
3636
description = "Wakatime API server implementation / Dashboard UI";
37-
license = lib.licenses.unlicense;
37+
license = stdenv.lib.licenses.unlicense;
3838
}

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.1
3+
version: 1.7.2
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)