diff --git a/Makefile b/Makefile index 7561be9..b0deea8 100644 --- a/Makefile +++ b/Makefile @@ -45,6 +45,7 @@ package: build ./version-check.sh ./todo-check.sh # leave ./harmony in place + rm -rf ./harmony-npm mkdir harmony-npm cp harmony ./harmony-npm/ cp package.json ./harmony-npm/ diff --git a/harmony.ipkg b/harmony.ipkg index 416f2d0..55a97ff 100644 --- a/harmony.ipkg +++ b/harmony.ipkg @@ -1,5 +1,5 @@ package harmony -version = 2.4.0 +version = 2.4.1 authors = "Mathew Polzin" license = "MIT" -- brief = diff --git a/package-lock.json b/package-lock.json index 839e223..8904ffa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@mattpolzin/harmony", - "version": "2.4.0", + "version": "2.4.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@mattpolzin/harmony", - "version": "2.4.0", + "version": "2.4.1", "license": "MIT", "dependencies": { "octokit": "^2.0.10", diff --git a/package.json b/package.json index c8403b8..ba229fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mattpolzin/harmony", - "version": "2.4.0", + "version": "2.4.1", "publishConfig": { "access": "public" }, diff --git a/src/AppVersion.idr b/src/AppVersion.idr index f8fe61c..e01c51e 100644 --- a/src/AppVersion.idr +++ b/src/AppVersion.idr @@ -4,7 +4,7 @@ module AppVersion export appVersion : String -appVersion = "2.4.0" +appVersion = "2.4.1" export printVersion : HasIO io => io ()