diff --git a/CHANGELOG.md b/CHANGELOG.md index b101359f0..01dc2aa11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## UNRELEASED +### Added +### Changed +### Deprecated +### Removed +### Fixed +### Security + +## v0.14.0 -- 2023-08-25 + ### Added ### Changed - The `verify` command now manages Apalache server, if no already running instance is detected (#1115) +- Module management was rewritten, and instances should behave much better in + the simulator, REPL and integration with Apalache (#1119) ### Deprecated ### Removed diff --git a/quint/package-lock.json b/quint/package-lock.json index ac06de8a6..febe8d1e4 100644 --- a/quint/package-lock.json +++ b/quint/package-lock.json @@ -1,12 +1,12 @@ { "name": "@informalsystems/quint", - "version": "0.13.0", + "version": "0.14.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@informalsystems/quint", - "version": "0.13.0", + "version": "0.14.0", "license": "Apache 2.0", "dependencies": { "@grpc/grpc-js": "^1.8.14", diff --git a/quint/package.json b/quint/package.json index 82cfbcb5e..07e23aa1b 100644 --- a/quint/package.json +++ b/quint/package.json @@ -1,6 +1,6 @@ { "name": "@informalsystems/quint", - "version": "0.13.0", + "version": "0.14.0", "description": "Core tool for the Quint specification language", "keywords": [ "temporal", diff --git a/quint/src/version.ts b/quint/src/version.ts index 95eda04f4..bf3be1d64 100644 --- a/quint/src/version.ts +++ b/quint/src/version.ts @@ -1,2 +1,2 @@ // Generated by genversion. -export const version = '0.13.0' +export const version = '0.14.0'