Skip to content

Commit 24bdca4

Browse files
committed
0.13.1
1 parent 7522a8c commit 24bdca4

File tree

8 files changed

+322
-249
lines changed

8 files changed

+322
-249
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
run: 7z a -ttar -so -an ./${{ env.RELEASE_DIR }}/${{ env.RELEASE_BIN }}-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }} | 7z a -si ./${{ env.RELEASE_DIR }}/${{ env.RELEASE_BIN }}-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }}.tar.gz
101101

102102
- name: Upload Zip
103-
uses: actions/upload-artifact@v1
103+
uses: actions/upload-artifact@v4
104104
with:
105105
name: ${{ matrix.target }}
106106
path: ./${{ env.RELEASE_DIR }}

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,44 @@
22

33
## 🤍 Unreleased
44

5+
## ☀️ 0.13.1
6+
7+
- ### ✨ Features
8+
9+
- **Requests using proxy settings from env - [jjyr], [pull/1438]**
10+
11+
This enables ureq to use proxy settings from env, it solves lots of pain in network restricted environments.
12+
13+
[pull/1438]: https://github.com/rustwasm/wasm-pack/pull/1438
14+
[jjyr]: https://github.com/jjyr
15+
16+
- ### 🤕 Fixes
17+
18+
- **Update binary-install to v0.4.1 - [drager], [pull/1407]**
19+
20+
Release v0.4.0 of binary-install introduced a regression that caused failures on some platforms. This release fixes that regression.
21+
22+
[pull/1407]: https://github.com/rustwasm/wasm-pack/pull/1407
23+
[drager]: https://github.com/drager
24+
25+
- ** Allow npm binary upgrades - [net], [pull/1439]**
26+
27+
Fixes an issue where upgrading `wasm-pack` via NPM would not update the underlying binary.
28+
Previously, the binary was stored in the `binary-install` package's directory without versioning, causing version upgrades to silently fail as the old binary continued to be used.
29+
The binary is now stored in `node_modules/wasm-pack/binary/`, ensuring proper version updates when upgrading the package.
30+
31+
**Before:** Upgrading from `0.12.1` to `0.13.0` would continue using the `0.12.1` binary
32+
**After:** Each `wasm-pack` version manages its own binary, enabling proper version upgrades
33+
34+
[pull/1439]: https://github.com/rustwasm/wasm-pack/pull/1439
35+
[net]: https://github.com/net
36+
37+
- ### 🛠️ Maintenance
38+
- ** Remove unmaintained dependency atty in favor of stdlib - [mariusvniekerk], [pull/1436]**
39+
40+
[pull/1436]: https://github.com/rustwasm/wasm-pack/pull/1436
41+
[mariusvniekerk]: https://github.com/mariusvniekerk
42+
543
## ☀️ 0.13.0
644

745
- ### ✨ Features

0 commit comments

Comments
 (0)