File tree Expand file tree Collapse file tree 6 files changed +28
-6
lines changed Expand file tree Collapse file tree 6 files changed +28
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
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
+
10
32
## [ 1.0.0] - 2021-02-16
11
33
12
34
Initial versioned release.
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ version: "3"
57
57
services :
58
58
server :
59
59
container_name : hakatime
60
- image : mujx/hakatime:1.0.0
60
+ image : mujx/hakatime:1.0.1
61
61
environment :
62
62
# DB settings.
63
63
HAKA_DB_HOST : haka_db
@@ -180,7 +180,7 @@ hakatime run
180
180
## CLI options
181
181
182
182
```
183
- hakatime :: v1.0.0
183
+ hakatime :: v1.0.1
184
184
185
185
Usage: hakatime COMMAND
186
186
Wakatime server implementation
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " dashboard" ,
3
- "version" : " 1.0.0 " ,
3
+ "version" : " 1.0.1 " ,
4
4
"description" : " Dashboard for Hakatime" ,
5
5
"main" : " index.js" ,
6
6
"author" :
" Konstantinos Sideris <[email protected] >" ,
Original file line number Diff line number Diff line change 11
11
} :
12
12
mkDerivation {
13
13
pname = "hakatime" ;
14
- version = "1.0.0 " ;
14
+ version = "1.0.1 " ;
15
15
src = ./. ;
16
16
isLibrary = false ;
17
17
isExecutable = true ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ version: "3"
2
2
services :
3
3
server :
4
4
container_name : hakatime
5
- image : mujx/hakatime:1.0.0
5
+ image : mujx/hakatime:1.0.1
6
6
environment :
7
7
# DB settings.
8
8
HAKA_DB_HOST : haka_db
Original file line number Diff line number Diff line change 1
1
cabal-version : 3.0
2
2
name : hakatime
3
- version : 1.0.0
3
+ version : 1.0.1
4
4
synopsis : Wakatime API server implementation / Dashboard UI
5
5
description : Wakatime compatible server with an analytics dashboard.
6
6
license : Unlicense
You can’t perform that action at this time.
0 commit comments