Skip to content

Commit a6c4183

Browse files
committed
v1.6.1
1 parent 7fc8577 commit a6c4183

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [1.6.1](https://github.com/thomiceli/opengist/compare/v1.6.0...v1.6.1) - 2024-01-06
4+
See here how to [update](/docs/update.md) Opengist.
5+
6+
### Added
7+
- Healthcheck on Docker container (#204)
8+
- Translations:
9+
- fr-FR (#201)
10+
11+
### Fixed
12+
- Directory renaming on username change (#205)
13+
314
## [1.6.0](https://github.com/thomiceli/opengist/compare/v1.5.3...v1.6.0) - 2024-01-04
415
See here how to [update](/docs/update.md) Opengist.
516

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ Download the archive for your system from the release page [here](https://github
7878

7979
```shell
8080
# example for linux amd64
81-
wget https://github.com/thomiceli/opengist/releases/download/v1.6.0/opengist1.6.0-linux-amd64.tar.gz
81+
wget https://github.com/thomiceli/opengist/releases/download/v1.6.1/opengist1.6.1-linux-amd64.tar.gz
8282
83-
tar xzvf opengist1.6.0-linux-amd64.tar.gz
83+
tar xzvf opengist1.6.1-linux-amd64.tar.gz
8484
cd opengist
8585
chmod +x opengist
8686
./opengist # with or without `--config config.yml`

docs/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ Download the archive for your system from the release page [here](https://github
4747

4848
```shell
4949
# example for linux amd64
50-
wget https://github.com/thomiceli/opengist/releases/download/v1.6.0/opengist1.6.0-linux-amd64.tar.gz
50+
wget https://github.com/thomiceli/opengist/releases/download/v1.6.1/opengist1.6.1-linux-amd64.tar.gz
5151
52-
tar xzvf opengist1.6.0-linux-amd64.tar.gz
52+
tar xzvf opengist1.6.1-linux-amd64.tar.gz
5353
cd opengist
5454
chmod +x opengist
5555
./opengist # with or without `--config config.yml`

docs/update.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ Stop the running instance; then like your first installation of Opengist, downlo
2727

2828
```shell
2929
# example for linux amd64
30-
wget https://github.com/thomiceli/opengist/releases/download/v1.6.0/opengist1.6.0-linux-amd64.tar.gz
30+
wget https://github.com/thomiceli/opengist/releases/download/v1.6.1/opengist1.6.1-linux-amd64.tar.gz
3131

32-
tar xzvf opengist1.6.0-linux-amd64.tar.gz
32+
tar xzvf opengist1.6.1-linux-amd64.tar.gz
3333
cd opengist
3434
chmod +x opengist
3535
./opengist # with or without `--config config.yml`

internal/config/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"gopkg.in/yaml.v3"
1818
)
1919

20-
var OpengistVersion = "1.6.0"
20+
var OpengistVersion = "1.6.1"
2121

2222
var C *config
2323

0 commit comments

Comments
 (0)