diff --git a/CHANGELOG.md b/CHANGELOG.md index c51b90d0f77..2ae56cb60ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how ## [Unreleased] +## 2.10.1 +### Fixed +- CI:Release - Fix typo that broke the build + ## 2.10.0 ### Added - New feature, [tcp outgoing traffic](https://github.com/metalbear-co/mirrord/issues/27). It's now possible to make requests to a remote host from the staging environment context. You can enable this feature setting the `MIRRORD_TCP_OUTGOING` variable to true, or using the `-o` option in mirrord-cli. diff --git a/Cargo.lock b/Cargo.lock index 58baf5d1292..c79ed63da50 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1435,7 +1435,7 @@ dependencies = [ [[package]] name = "mirrord" -version = "2.10.0" +version = "2.10.1" dependencies = [ "anyhow", "clap 3.2.17", @@ -1450,7 +1450,7 @@ dependencies = [ [[package]] name = "mirrord-agent" -version = "2.10.0" +version = "2.10.1" dependencies = [ "actix-codec", "bollard", @@ -1478,7 +1478,7 @@ dependencies = [ [[package]] name = "mirrord-auth" -version = "2.10.0" +version = "2.10.1" dependencies = [ "lazy_static", "rand 0.8.5", @@ -1491,7 +1491,7 @@ dependencies = [ [[package]] name = "mirrord-layer" -version = "2.10.0" +version = "2.10.1" dependencies = [ "actix-codec", "async-trait", @@ -1521,7 +1521,7 @@ dependencies = [ [[package]] name = "mirrord-macro" -version = "2.10.0" +version = "2.10.1" dependencies = [ "proc-macro2", "quote", @@ -1530,7 +1530,7 @@ dependencies = [ [[package]] name = "mirrord-protocol" -version = "2.10.0" +version = "2.10.1" dependencies = [ "actix-codec", "bincode", diff --git a/Cargo.toml b/Cargo.toml index c450dc932d0..c2134477808 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ # latest commits on rustls suppress certificate verification [workspace.package] -version = "2.10.0" +version = "2.10.1" edition = "2021" license = "MIT" readme = "README.md" diff --git a/intellij-ext/gradle.properties b/intellij-ext/gradle.properties index 70b6c056724..4003af881ac 100644 --- a/intellij-ext/gradle.properties +++ b/intellij-ext/gradle.properties @@ -4,7 +4,7 @@ pluginGroup = com.metalbear.mirrord pluginName = mirrord # SemVer format -> https://semver.org -pluginVersion = 2.10.0 +pluginVersion = 2.10.1 # See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html # for insight into build numbers and IntelliJ Platform versions. diff --git a/vscode-ext/package-lock.json b/vscode-ext/package-lock.json index 75a212ffaf2..ccf390b2857 100644 --- a/vscode-ext/package-lock.json +++ b/vscode-ext/package-lock.json @@ -1,12 +1,12 @@ { "name": "mirrord", - "version": "2.10.0", + "version": "2.10.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "mirrord", - "version": "2.10.0", + "version": "2.10.1", "dependencies": { "@kubernetes/client-node": "^0.16.3", "es5-ext": "<=0.10.53", diff --git a/vscode-ext/package.json b/vscode-ext/package.json index d209701ea7e..1c15c25499e 100644 --- a/vscode-ext/package.json +++ b/vscode-ext/package.json @@ -3,7 +3,7 @@ "displayName": "mirrord", "description": "Mirror live traffic from your Kubernetes cluster to your local debugged process.", "publisher": "MetalBear", - "version": "2.10.0", + "version": "2.10.1", "engines": { "vscode": "^1.63.0" },