From 31b079d0f02f185bd9d1a54e08124d51f218abe6 Mon Sep 17 00:00:00 2001 From: Eyal Bukchin Date: Sun, 23 Oct 2022 08:38:37 +0000 Subject: [PATCH] Update to 3.2.0 (#619) Co-authored-by: Eyal Bukchin --- CHANGELOG.md | 2 ++ Cargo.lock | 22 +++++++++++----------- Cargo.toml | 2 +- intellij-ext/gradle.properties | 2 +- vscode-ext/package-lock.json | 4 ++-- vscode-ext/package.json | 2 +- 6 files changed, 18 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07d7af1c5eb..5b7bc8303b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how ## [Unreleased] +## 3.2.0 + ### Changed - Extended support for both `-s` and `-x` wildcard matching, now supports `PREFIX_*`, `*_SUFFIX`, ect. - Add to env default ignore `JAVA_HOME`,`HOMEPATH`,`CLASSPATH`,`JAVA_EXE` as it's usually runtime that you don't want from remote. Possibly fixes issue discussed on Discord (used complained that they had to use absolute path and not relative). diff --git a/Cargo.lock b/Cargo.lock index 5f971b92868..e092ee68d92 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -742,7 +742,7 @@ dependencies = [ [[package]] name = "fileops" -version = "3.1.3" +version = "3.2.0" dependencies = [ "libc", ] @@ -1608,7 +1608,7 @@ dependencies = [ [[package]] name = "mirrord" -version = "3.1.3" +version = "3.2.0" dependencies = [ "anyhow", "clap 3.2.22", @@ -1627,7 +1627,7 @@ dependencies = [ [[package]] name = "mirrord-agent" -version = "3.1.3" +version = "3.2.0" dependencies = [ "actix-codec", "bollard", @@ -1663,7 +1663,7 @@ dependencies = [ [[package]] name = "mirrord-auth" -version = "3.1.3" +version = "3.2.0" dependencies = [ "lazy_static", "rand 0.8.5", @@ -1676,7 +1676,7 @@ dependencies = [ [[package]] name = "mirrord-config" -version = "3.1.3" +version = "3.2.0" dependencies = [ "anyhow", "mirrord-config-derive", @@ -1692,7 +1692,7 @@ dependencies = [ [[package]] name = "mirrord-config-derive" -version = "3.1.3" +version = "3.2.0" dependencies = [ "proc-macro2", "proc-macro2-diagnostics", @@ -1702,7 +1702,7 @@ dependencies = [ [[package]] name = "mirrord-layer" -version = "3.1.3" +version = "3.2.0" dependencies = [ "actix-codec", "anyhow", @@ -1739,7 +1739,7 @@ dependencies = [ [[package]] name = "mirrord-macro" -version = "3.1.3" +version = "3.2.0" dependencies = [ "proc-macro2", "quote", @@ -1748,7 +1748,7 @@ dependencies = [ [[package]] name = "mirrord-progress" -version = "3.1.3" +version = "3.2.0" dependencies = [ "atty", "termspin", @@ -1756,7 +1756,7 @@ dependencies = [ [[package]] name = "mirrord-protocol" -version = "3.1.3" +version = "3.2.0" dependencies = [ "actix-codec", "bincode", @@ -2715,7 +2715,7 @@ dependencies = [ [[package]] name = "rust-e2e-fileops" -version = "3.1.3" +version = "3.2.0" dependencies = [ "libc", ] diff --git a/Cargo.toml b/Cargo.toml index 3b0ee004746..44f49dc0803 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ members = [ # latest commits on rustls suppress certificate verification [workspace.package] -version = "3.1.3" +version = "3.2.0" edition = "2021" license = "MIT" readme = "README.md" diff --git a/intellij-ext/gradle.properties b/intellij-ext/gradle.properties index fbafff24955..2b1b5430b79 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 = 3.1.3 +pluginVersion = 3.2.0 # 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 d61184c4ace..de03d42a826 100644 --- a/vscode-ext/package-lock.json +++ b/vscode-ext/package-lock.json @@ -1,12 +1,12 @@ { "name": "mirrord", - "version": "3.1.3", + "version": "3.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "mirrord", - "version": "3.1.3", + "version": "3.2.0", "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 3d5ff53cba3..516ac2f50ba 100644 --- a/vscode-ext/package.json +++ b/vscode-ext/package.json @@ -3,7 +3,7 @@ "displayName": "mirrord", "description": "Run your local process in the context of your cloud cluster", "publisher": "MetalBear", - "version": "3.1.3", + "version": "3.2.0", "engines": { "vscode": "^1.63.0" },