Skip to content
This repository was archived by the owner on Jul 17, 2024. It is now read-only.

Commit 68525fe

Browse files
committed
fix: Fix memory issue.
1 parent f401604 commit 68525fe

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.1.1
4+
5+
#### 🐞 Fixes
6+
7+
- Potentially fixed a WASM memory issue.
8+
39
## 0.1.0
410

511
#### 🚀 Updates

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "python_plugin"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
license = "MIT"
66
publish = false

src/proto.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,8 @@ pub fn download_prebuilt(
6868
return err!(PluginError::UnsupportedCanary { tool: NAME.into() }.into());
6969
}
7070

71-
let releases: HashMap<String, HashMap<String, ReleaseEntry>> = fetch_url_with_cache(
72-
"https://raw.githubusercontent.com/moonrepo/python-plugin/master/releases.json",
73-
)?;
71+
let releases: HashMap<String, HashMap<String, ReleaseEntry>> =
72+
fetch_url("https://raw.githubusercontent.com/moonrepo/python-plugin/master/releases.json")?;
7473

7574
let Some(release_triples) = releases.get(&version) else {
7675
return err!("No pre-built available for version {}!", version);

0 commit comments

Comments
 (0)