diff --git a/CHANGELOG.md b/CHANGELOG.md index d38447ac2..e5a047e2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,13 @@ - Disabled the version check requests for `proto activate`. +#### 🧩 Plugins + +- Updated `deno_plugin` to v0.11.4. + - Updated canary to find an applicable release based on the current os/arch combination. +- Updated `node_plugin` to v0.11.7. + - Updated canary to find an applicable release based on the current os/arch combination. + ## 0.39.1 #### 🚀 Updates diff --git a/crates/core/src/proto_config.rs b/crates/core/src/proto_config.rs index 54caef265..18629d612 100644 --- a/crates/core/src/proto_config.rs +++ b/crates/core/src/proto_config.rs @@ -231,7 +231,7 @@ impl ProtoConfig { self.plugins.insert( Id::raw("deno"), PluginLocator::Url { - url: "https://github.com/moonrepo/tools/releases/download/deno_tool-v0.11.3/deno_tool.wasm".into() + url: "https://github.com/moonrepo/tools/releases/download/deno_tool-v0.11.4/deno_tool.wasm".into() } ); } @@ -249,7 +249,7 @@ impl ProtoConfig { self.plugins.insert( Id::raw("node"), PluginLocator::Url { - url: "https://github.com/moonrepo/tools/releases/download/node_tool-v0.11.6/node_tool.wasm".into() + url: "https://github.com/moonrepo/tools/releases/download/node_tool-v0.11.7/node_tool.wasm".into() } ); }