Skip to content

Commit 9403bb7

Browse files
committed
Version 1.3.3
1 parent 6f8cd21 commit 9403bb7

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.3.3] - 08th April 2022
8+
- Upgrade Geist UI to version 2.3.8
9+
- Upgrade Go to version 1.18
10+
- Utilize an external library for generating the SSH key
11+
- Change the name of the key file from `id_rsa` to `id_ed25519` as the Ed25519 algorithm is used for its creation
12+
713
## [1.3.2] - 16th February 2022
814
- Upgrade Geist UI to version 2.2.5 ([#19](https://github.com/LukWebsForge/TldrProgress/pull/19))
915
- Left-alignment of the content
@@ -62,7 +68,8 @@ This is the first release. If you spot any bugs, please let us know.
6268
- Configuration files for systemd
6369
- This Changelog
6470

65-
[Unreleased]: https://github.com/LukWebsForge/TldrProgress/compare/v1.3.2...HEAD
71+
[Unreleased]: https://github.com/LukWebsForge/TldrProgress/compare/v1.3.3...HEAD
72+
[1.3.3]: https://github.com/LukWebsForge/TldrProgress/releases/tag/v1.3.3
6673
[1.3.2]: https://github.com/LukWebsForge/TldrProgress/releases/tag/v1.3.2
6774
[1.3.1]: https://github.com/LukWebsForge/TldrProgress/releases/tag/v1.3.1
6875
[1.3.0]: https://github.com/LukWebsForge/TldrProgress/releases/tag/v1.3.0

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ You can configure certain details using environment variables.
4444
You can either let the program generate a new SSH key pair, or you can use your own even if a password is required.
4545
This application doesn't support HTTP authentication.
4646

47-
The SSH key pair `id_rsa` and `id_rsa.pub` in the folder `keys` will be used to access the tldr repository and
47+
The SSH key pair `id_ed25519` and `id_ed25519.pub` in the folder `keys` will be used to access the tldr repository and
4848
publish changes to the deployment repository (`SITE_REMOTE_URL`).
4949
If the key pair is missing, it'll be generated during the startup of the application.
50-
The generated public key `id_rsa.pub` will be printed to the console.
50+
The generated public key `id_ed25519.pub` will be printed to the console.
5151
I recommend adding the public key as a deployment key (with writing access) for the deployment repository.
5252

5353
Each day at midnight (UTC) the program will execute the update.
@@ -94,7 +94,7 @@ systemctl enable tldrprogress.service
9494
# Start the program now
9595
sudo systemctl start tldrprogress.service
9696
# Optional: View generated the public SSH key
97-
cat /home/tldr/progress/keys/id_rsa.pub
97+
cat /home/tldr/progress/keys/id_ed25519.pub
9898
```
9999

100100
## Contributing

0 commit comments

Comments
 (0)