Skip to content

Commit 293ec0e

Browse files
committed
Release v0.3.1
1 parent a0c930d commit 293ec0e

3 files changed

Lines changed: 14 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ Changelog](https://keepachangelog.com/en/1.0.0/).
99

1010
- Nothing yet!
1111

12+
## [0.3.1] - 2026-03-28
13+
14+
### Added
15+
16+
- `-v|--version|version` to get the current version
17+
1218
## [0.3.0] - 2021-12-04
1319

1420
### Changed
@@ -32,7 +38,8 @@ Changelog](https://keepachangelog.com/en/1.0.0/).
3238

3339
- Everything!
3440

35-
[Unreleased]: https://github.com/nickjj/notes/compare/v0.3.0...HEAD
41+
[Unreleased]: https://github.com/nickjj/notes/compare/v0.3.1...HEAD
42+
[0.3.1]: https://github.com/nickjj/notes/compare/v0.3.0...v0.3.1
3643
[0.3.0]: https://github.com/nickjj/notes/compare/v0.2.0...v0.3.0
3744
[0.2.0]: https://github.com/nickjj/notes/compare/v0.1.0...v0.2.0
3845
[0.1.0]: https://github.com/nickjj/notes/releases/tag/v0.1.0

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,14 @@ scripts then feel free to run things manually.
8787

8888
```sh
8989
sudo curl \
90-
-L https://raw.githubusercontent.com/nickjj/notes/master/notes \
90+
-L https://raw.githubusercontent.com/nickjj/notes/v0.3.1/notes \
9191
-o /usr/local/bin/notes && sudo chmod +x /usr/local/bin/notes
9292
```
9393

94+
That will download the latest release. If you want to download the bleeding
95+
edge version you can replace the *version number* with *master* in the above
96+
command.
97+
9498
You can also choose to replace `master` with a specific [release
9599
tag](https://github.com/nickjj/notes/tags) if you want to grab a specific
96100
version.

notes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ set -o errexit
1313

1414
case "${1}" in
1515
-v | --version | version)
16-
echo "0.3.0"
16+
echo "0.3.1"
1717
exit
1818
;;
1919
esac

0 commit comments

Comments
 (0)