master
Jesper Håkansson 2 years ago
parent 48177dc0d7
commit bec632240a
  1. 22
      CHANGELOG.md
  2. 521
      Cargo.lock
  3. 2
      Cargo.toml
  4. 6
      docs/index.html
  5. 2
      npm/README.md
  6. 2
      npm/package.json
  7. 2
      src/test/webdriver/chromedriver.rs
  8. 2
      src/test/webdriver/geckodriver.rs

@ -2,6 +2,28 @@
## 🤍 Unreleased
## 🌦 0.11.1
- ### 🤕 Fixes
- **Fix discovery of locally installed `wasm-opt` - [Liamolucko], [issue/1247], [pull/1257]**
[issue/1247]: https://github.com/rustwasm/wasm-pack/issues/1247
[pull/1257]: https://github.com/rustwasm/wasm-pack/pull/1257
[Liamolucko]: https://github.com/Liamolucko
- **Fix wasm-pack bin script entry - [ahippler], [issue/1248], [pull/1250]**
[issue/1248]: https://github.com/rustwasm/wasm-pack/issues/1248
[pull/1250]: https://github.com/rustwasm/wasm-pack/pull/1250
[ahippler]: https://github.com/ahippler
- ### 🛠 Maintenance
- **bump openssl from 0.10.46 to 0.10.48 - [pull/1254]**
[pull/1254]: https://github.com/rustwasm/wasm-pack/pull/1254
## 🌦 0.11.0
- ### ✨ Features

521
Cargo.lock generated

File diff suppressed because it is too large Load Diff

@ -1,7 +1,7 @@
[package]
name = "wasm-pack"
description = "📦✨ your favorite rust -> wasm workflow tool!"
version = "0.11.0"
version = "0.11.1"
authors = ["Ashley Williams <ashley666ashley@gmail.com>", "Jesper Håkansson <jesper@jesperh.se>"]
repository = "https://github.com/rustwasm/wasm-pack.git"
license = "MIT OR Apache-2.0"

@ -42,9 +42,9 @@
<h2>📦✨ your favorite rust -> wasm workflow tool!</h2>
</div>
<div class="five columns" id="installer">
<a class="button button-primary" href="/wasm-pack/installer">✨ Install wasm-pack 0.11.0</a>
<p>19 March 2023 |
<a href="https://github.com/rustwasm/wasm-pack/releases/tag/v0.11.0">
<a class="button button-primary" href="/wasm-pack/installer">✨ Install wasm-pack 0.11.1</a>
<p>11 May 2023 |
<a href="https://github.com/rustwasm/wasm-pack/releases/tag/v0.11.1">
Release Notes
</a>
</p>

@ -85,7 +85,7 @@ check out our [contribution policy].
This project is part of the [rustwasm Working Group].
This project was started by [ashleygwilliams] and is co-maintained by [ashleygwilliams], [drager] and the Rust Wasm Working Group Core Team.
This project was started by [ashleygwilliams] and is maintained by [drager] and the Rust Wasm Working Group Core Team.
[ashleygwilliams]: https://github.com/ashleygwilliams
[drager]: https://github.com/drager

@ -1,6 +1,6 @@
{
"name": "wasm-pack",
"version": "0.11.0",
"version": "0.11.1",
"description": "📦✨ your favorite rust -> wasm workflow tool!",
"main": "binary.js",
"scripts": {

@ -9,7 +9,7 @@ use std::path::PathBuf;
// Keep it up to date with each `wasm-pack` release.
// https://chromedriver.storage.googleapis.com/LATEST_RELEASE
const DEFAULT_CHROMEDRIVER_VERSION: &str = "111.0.5563.64";
const DEFAULT_CHROMEDRIVER_VERSION: &str = "113.0.5672.63";
const CHROMEDRIVER_LAST_UPDATED_STAMP: &str = "chromedriver_last_updated";
const CHROMEDRIVER_VERSION_STAMP: &str = "chromedriver_version";

@ -9,7 +9,7 @@ use std::path::PathBuf;
// Keep it up to date with each `wasm-pack` release.
// https://github.com/mozilla/geckodriver/releases/latest
const DEFAULT_GECKODRIVER_VERSION: &str = "v0.32.2";
const DEFAULT_GECKODRIVER_VERSION: &str = "v0.33.0";
const DEFAULT_WINDOWS_GECKODRIVER_VERSION: &str = "v0.24.0";
const GECKODRIVER_LAST_UPDATED_STAMP: &str = "geckodriver_last_updated";

Loading…
Cancel
Save