Skip to content

Commit fdb5598

Browse files
committed
v1.0.1
1 parent bab5a07 commit fdb5598

File tree

6 files changed

+28
-6
lines changed

6 files changed

+28
-6
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.0.1] - 2021-02-23
11+
12+
### Improvements
13+
14+
- The following file extensions are now recognized (the wakatime plugin sends no values for these):
15+
- `.gotmpl` -> `Go template`
16+
- `.tfvars` -> `Terraform`
17+
- `.dhall` -> `Dhall`
18+
- `.zig` -> `Zig`
19+
- `.org` -> `Org`
20+
- `.purs` -> `PureScript`
21+
- `.cabal` -> `Cabal config`
22+
- `.jinja|.jinja2` -> `Jinja`
23+
- Updated the docker image to use GHC 8.10.
24+
- Reduced the size of the docker image down to ~85 MB.
25+
- Removed some unnecessary direct dependencies.
26+
27+
### Bug fixes
28+
29+
- Fixed the Dockerfile for ARM (#21). (TravisCI experiences random failures and it's currently not possible to
30+
provide regular docker builds for ARM)
31+
1032
## [1.0.0] - 2021-02-16
1133

1234
Initial versioned release.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ version: "3"
5757
services:
5858
server:
5959
container_name: hakatime
60-
image: mujx/hakatime:1.0.0
60+
image: mujx/hakatime:1.0.1
6161
environment:
6262
# DB settings.
6363
HAKA_DB_HOST: haka_db
@@ -180,7 +180,7 @@ hakatime run
180180
## CLI options
181181

182182
```
183-
hakatime :: v1.0.0
183+
hakatime :: v1.0.1
184184
185185
Usage: hakatime COMMAND
186186
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.0.0",
3+
"version": "1.0.1",
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.0.0";
14+
version = "1.0.1";
1515
src = ./.;
1616
isLibrary = false;
1717
isExecutable = true;

docker-compose-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3"
22
services:
33
server:
44
container_name: hakatime
5-
image: mujx/hakatime:1.0.0
5+
image: mujx/hakatime:1.0.1
66
environment:
77
# DB settings.
88
HAKA_DB_HOST: haka_db

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.0.0
3+
version: 1.0.1
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)