diff --git a/default.nix b/default.nix index fa843e1..fa9b45d 100644 --- a/default.nix +++ b/default.nix @@ -41,7 +41,7 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "harmony"; - version = "3.1.0"; + version = "3.2.0"; nativeBuildInputs = [ idris2 installShellFiles makeWrapper ]; buildInputs = [ nodejs git ]; diff --git a/harmony.ipkg b/harmony.ipkg index cdae581..e255505 100644 --- a/harmony.ipkg +++ b/harmony.ipkg @@ -1,5 +1,5 @@ package harmony -version = 3.1.0 +version = 3.2.0 authors = "Mathew Polzin" license = "MIT" brief = "Harmony GitHub collaboration tool" diff --git a/package.json b/package.json index 595a4b2..7960ba6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mattpolzin/harmony", - "version": "3.1.0", + "version": "3.2.0", "engines" : { "node" : ">=18.0.0" }, diff --git a/src/AppVersion.idr b/src/AppVersion.idr index 1b3c37e..c0d1321 100644 --- a/src/AppVersion.idr +++ b/src/AppVersion.idr @@ -4,7 +4,7 @@ module AppVersion export appVersion : String -appVersion = "3.1.0" +appVersion = "3.2.0" export printVersion : HasIO io => io ()