diff --git a/CHANGELOG.md b/CHANGELOG.md index 155a668..330051b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.0] - 2026-07-22 + ### Fixed - Concurrent `ChatEngine.sendMessage` calls now queue and run in call order instead of interleaving shared history and preview state; the interactive REPL already serialized calls, so this protects programmatic callers @@ -131,7 +133,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Unimplemented `cancelJob` and `listJobs` from BatchManager -[Unreleased]: https://github.com/mainwp/mainwp-control/compare/v1.1.0-beta.1...HEAD +[Unreleased]: https://github.com/mainwp/mainwp-control/compare/v1.1.0...HEAD +[1.1.0]: https://github.com/mainwp/mainwp-control/compare/v1.1.0-beta.1...v1.1.0 [1.1.0-beta.1]: https://github.com/mainwp/mainwp-control/compare/v1.0.1...v1.1.0-beta.1 [1.0.1]: https://github.com/mainwp/mainwp-control/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/mainwp/mainwp-control/releases/tag/v1.0.0 diff --git a/package-lock.json b/package-lock.json index b0fdd3f..71eac10 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@mainwp/control", - "version": "1.1.0-beta.1", + "version": "1.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@mainwp/control", - "version": "1.1.0-beta.1", + "version": "1.1.0", "license": "GPL-3.0-or-later", "dependencies": { "@oclif/core": "^4.11.14", diff --git a/package.json b/package.json index 6a65f0d..967e946 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mainwp/control", - "version": "1.1.0-beta.1", + "version": "1.1.0", "description": "Command-line interface for scripting and automating MainWP Dashboard operations", "type": "module", "exports": "./dist/index.js", @@ -12,7 +12,8 @@ "bin", "dist", "scripts/completions", - "oclif.manifest.json" + "oclif.manifest.json", + "CHANGELOG.md" ], "scripts": { "build": "tsc",