Skip to content

Commit

Permalink
Merge pull request #102 from mattpolzin/release-3.1
Browse files Browse the repository at this point in the history
bump to version 3.1.0
  • Loading branch information
mattpolzin authored Dec 30, 2023
2 parents b4db6bc + 6ce8a99 commit 59c8b0b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

## Release Checklist
- [ ] Bump versions in `package.json`, `src/AppVersion.idr`, and `harmony.ipkg`
- [ ] Bump versions in `package.json`, `default.nix`, `src/AppVersion.idr`, and `harmony.ipkg` (`make version v=1.2.3`)
- [ ] Update README.md
- [ ] Publish to NPM
- [ ] Create new GitHub Release
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ let
in
stdenv.mkDerivation (finalAttrs: {
pname = "harmony";
version = "3.0.0";
version = "3.1.0";

nativeBuildInputs = [ idris2 installShellFiles makeWrapper ];
buildInputs = [ nodejs git ];
Expand Down
2 changes: 1 addition & 1 deletion harmony.ipkg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package harmony
version = 3.0.0
version = 3.1.0
authors = "Mathew Polzin"
license = "MIT"
brief = "Harmony GitHub collaboration tool"
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mattpolzin/harmony",
"version": "3.0.0",
"version": "3.1.0",
"engines" : {
"node" : ">=18.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/AppVersion.idr
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module AppVersion

export
appVersion : String
appVersion = "3.0.0"
appVersion = "3.1.0"

export
printVersion : HasIO io => io ()
Expand Down

0 comments on commit 59c8b0b

Please sign in to comment.