diff --git a/CHANGELOG.md b/CHANGELOG.md index fa0c122b33a..6d23af0671e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ Previous versions had CHANGELOG per component, we decided to combine all reposit Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. ## [Unreleased] + +## 2.4.0 + ### Added - mirrord-cli `exec` subcommand accepts `--extract-path` argument to set the directory to extract the library to. Used for tests mainly. - mirrord-layer provides `MIRRORD_IMPERSONATED_CONTAINER_NAME` environment variable to specify container name to impersonate. mirrord-cli accepts argument to set variable. diff --git a/Cargo.lock b/Cargo.lock index 12c025d02e6..b5765d3e31d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1351,7 +1351,7 @@ dependencies = [ [[package]] name = "mirrord" -version = "2.3.1" +version = "2.4.0" dependencies = [ "anyhow", "clap 3.2.8", @@ -1365,7 +1365,7 @@ dependencies = [ [[package]] name = "mirrord-agent" -version = "2.3.1" +version = "2.4.0" dependencies = [ "actix-codec", "bollard", @@ -1390,7 +1390,7 @@ dependencies = [ [[package]] name = "mirrord-layer" -version = "2.3.1" +version = "2.4.0" dependencies = [ "actix-codec", "anyhow", @@ -1423,7 +1423,7 @@ dependencies = [ [[package]] name = "mirrord-protocol" -version = "2.3.1" +version = "2.4.0" dependencies = [ "actix-codec", "bincode", diff --git a/Cargo.toml b/Cargo.toml index d3e12cde8d7..b76e52d703a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ members = [ # latest commits on rustls suppress certificate verification [workspace.package] -version = "2.3.1" +version = "2.4.0" edition = "2021" license = "MIT" readme = "README.md" diff --git a/vscode-ext/package-lock.json b/vscode-ext/package-lock.json index d72a82a7fb0..03832a6e507 100644 --- a/vscode-ext/package-lock.json +++ b/vscode-ext/package-lock.json @@ -1,12 +1,12 @@ { "name": "mirrord", - "version": "2.3.1", + "version": "2.4.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "mirrord", - "version": "2.3.1", + "version": "2.4.0", "dependencies": { "@kubernetes/client-node": "^0.16.3", "ffi-napi": "^4.0.3", diff --git a/vscode-ext/package.json b/vscode-ext/package.json index f65b6eff09f..008f4aa08de 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.3.1", + "version": "2.4.0", "engines": { "vscode": "^1.63.0" },