diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e580a84d..c9f5c7cd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# [9.0.0-next.22](https://github.com/readmeio/rdme/compare/v9.0.0-next.21...v9.0.0-next.22) (2024-11-19) + + +* feat!: oclif (take 2) ([#1068](https://github.com/readmeio/rdme/issues/1068)) ([5e05f93](https://github.com/readmeio/rdme/commit/5e05f9381ff92441b95e49fcf6b369ed74b62a2e)), closes [#962](https://github.com/readmeio/rdme/issues/962) [#1067](https://github.com/readmeio/rdme/issues/1067) [/github.com/readmeio/rdme/blob/d01d76fe3c2e4a98b4f5c415be03e589fbe3b56e/.releaserc.yml#L30](https://github.com//github.com/readmeio/rdme/blob/d01d76fe3c2e4a98b4f5c415be03e589fbe3b56e/.releaserc.yml/issues/L30) [#1067](https://github.com/readmeio/rdme/issues/1067) + + +### BREAKING CHANGES + +* the `rdme` GitHub Actions is now a [the `node20` JavaScript action](https://docs.github.com/en/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions#runs-for-javascript-actions) rather than [a Docker container action](https://docs.github.com/en/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions#runs-for-docker-container-actions). +* `rdme` is now powered by [`oclif`](https://oclif.io/). The formatting and content of certain error messages and outputs may have changed. Please continue to only utilize exit codes to determine command successes/failures. + +completed tasks: + +- [x] a handful of tests are still failing, hoping that +https://github.com/oclif/test/pull/652 gets merged in) +- [x] github actions dry runs are failing (but i got them working in + # [9.0.0-next.21](https://github.com/readmeio/rdme/compare/v9.0.0-next.20...v9.0.0-next.21) (2024-11-18) diff --git a/documentation/commands.md b/documentation/commands.md index 63ac3ebb0..7b38951b2 100644 --- a/documentation/commands.md +++ b/documentation/commands.md @@ -14,7 +14,7 @@ $ npm install -g rdme $ rdme COMMAND running command... $ rdme (--version) -rdme/9.0.0-next.21 darwin-arm64 node-v22.11.0 +rdme/9.0.0-next.21 linux-x64 node-v20.18.0 $ rdme --help [COMMAND] USAGE $ rdme COMMAND diff --git a/package-lock.json b/package-lock.json index 5cc2660cb..fef445a3a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rdme", - "version": "9.0.0-next.21", + "version": "9.0.0-next.22", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rdme", - "version": "9.0.0-next.21", + "version": "9.0.0-next.22", "license": "MIT", "dependencies": { "@actions/core": "^1.6.0", diff --git a/package.json b/package.json index 9fa494c5b..a47ef31fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rdme", - "version": "9.0.0-next.21", + "version": "9.0.0-next.22", "description": "ReadMe's official CLI and GitHub Action.", "license": "MIT", "author": "ReadMe (https://readme.com)",