diff --git a/CHANGELOG.md b/CHANGELOG.md index 8747a6a5..9364df3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,23 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang +## [3.61.0](https://github.com/metalbear-co/mirrord-vscode/tree/3.61.0) - 2024-08-16 + + +### Added + +- Add the option for mirrord to be enabled by default on startup by setting + mirrord.enabledByDefault + [#131](https://github.com/metalbear-co/mirrord-vscode/issues/131) + + +### Fixed + +- Fixed an issue where `mirrord.autoUpdate` set to an empty string prevented + the extension from downloading mirrord binary. Improved notifications related + to auto update. + [#144](https://github.com/metalbear-co/mirrord-vscode/issues/144) + ## [3.60.2](https://github.com/metalbear-co/mirrord-vscode/tree/3.60.2) - 2024-08-12 diff --git a/changelog.d/131.added.md b/changelog.d/131.added.md deleted file mode 100644 index 8e7eaebe..00000000 --- a/changelog.d/131.added.md +++ /dev/null @@ -1 +0,0 @@ -Add the option for mirrord to be enabled by default on startup by setting mirrord.enabledByDefault \ No newline at end of file diff --git a/changelog.d/144.fixed.md b/changelog.d/144.fixed.md deleted file mode 100644 index 3f9637ae..00000000 --- a/changelog.d/144.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Fixed an issue where `mirrord.autoUpdate` set to an empty string prevented the extension from downloading mirrord binary. Improved notifications related to auto update. \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 3b85adeb..332fcaea 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mirrord", - "version": "3.60.2", + "version": "3.61.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "mirrord", - "version": "3.60.2", + "version": "3.61.0", "dependencies": { "axios": "^1.4.0", "semver": "^7.5.4", diff --git a/package.json b/package.json index be25df84..d16784fe 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "mirrord", "description": "Run your local process in the context of your cloud cluster", "publisher": "MetalBear", - "version": "3.60.2", + "version": "3.61.0", "engines": { "vscode": "^1.63.0" },