diff --git a/CHANGELOG.md b/CHANGELOG.md index d6e5ec0..de0fdc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ Notable changes to this project are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). This file is updated via [purs-changelog](https://github.com/JordanMartinez/purescript-up-changelog) +## 0.5.3 + +Internal: + +* Fix version outputted by `--version` + ## 0.5.2 Internal: diff --git a/RELEASE_GUIDE.md b/RELEASE_GUIDE.md index 9d124fa..bf598bd 100644 --- a/RELEASE_GUIDE.md +++ b/RELEASE_GUIDE.md @@ -7,7 +7,7 @@ git switch -c new-release npm version minor # major, minor, patch, etc. VERSION=$(jq '.version' package.json) -sed -E "s/version = \"[^\"]+\"/version = ${VERSION}/" bin/Main.purs +sed -i -E "s/version = \"[^\"]+\"/version = ${VERSION}/" bin/Main.purs git add package.json bin/Main.purs git commit -m "Update version" diff --git a/bin/Main.purs b/bin/Main.purs index 4f65771..fb6c766 100644 --- a/bin/Main.purs +++ b/bin/Main.purs @@ -45,7 +45,7 @@ main = do launchAff_ $ runApp init { logger: mkLogger logType, cli: options } version :: String -version = "0.5.0" +version = "0.5.3" mkLogger :: LoggerType -> Logger Effect mkLogger = case _ of diff --git a/package-lock.json b/package-lock.json index 9a0c876..bac369b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,15 +1,15 @@ { - "name": "purs-changelog", - "version": "0.5.1", + "name": "chnglg", + "version": "0.5.3", "lockfileVersion": 2, "requires": true, "packages": { "": { - "name": "purs-changelog", - "version": "0.5.1", + "name": "chnglg", + "version": "0.5.3", "license": "MIT", "bin": { - "purs-changelog": "bin/index.js" + "chnglg": "bin/index.mjs" }, "devDependencies": { "esbuild": "^0.19.3", diff --git a/package.json b/package.json index 56d97c6..a6bdcab 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "chnglg", - "version": "0.5.2", + "version": "0.5.3", "description": "A maintainer and contributor-friendly tool for generating a human-readable CHANGELOG.md", "bin": { "chnglg": "bin/index.mjs"