File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -87,10 +87,14 @@ scripts then feel free to run things manually.
8787
8888``` sh
8989sudo 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+
9498You can also choose to replace ` master ` with a specific [ release
9599tag] ( https://github.com/nickjj/notes/tags ) if you want to grab a specific
96100version.
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ set -o errexit
1313
1414case " ${1} " in
1515-v | --version | version)
16- echo " 0.3.0 "
16+ echo " 0.3.1 "
1717 exit
1818 ;;
1919esac
You can’t perform that action at this time.
0 commit comments