Skip to content

Commit

Permalink
Bump crate versions we publish to crates.io (#597)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffcharles authored Jan 31, 2024
1 parent 2077d36 commit 1a18696
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 12 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ wasmtime-wasi = "16"
wasi-common = "16"
anyhow = "1.0"
once_cell = "1.19"
javy = { path = "crates/javy", version = "2.2.0-alpha.1" }
javy = { path = "crates/javy", version = "2.2.0" }

[profile.release]
lto = true
Expand Down
2 changes: 2 additions & 0 deletions crates/apis/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.2.0] - 2024-01-31

### Changed

- Updated to 2023-12-09 release of QuickJS.
Expand Down
2 changes: 1 addition & 1 deletion crates/apis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "javy-apis"
version = "2.2.0-alpha.1"
version = "2.2.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/javy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.2.0] - 2024-01-31

### Fixed

- Missing documentation for `export_alloc_fns` feature and `alloc` functions.
Expand Down
4 changes: 2 additions & 2 deletions crates/javy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "javy"
version = "2.2.0-alpha.1"
version = "2.2.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -11,7 +11,7 @@ categories = ["wasm"]

[dependencies]
anyhow = { workspace = true }
quickjs-wasm-rs = { version = "3.0.0-alpha.1", path = "../quickjs-wasm-rs" }
quickjs-wasm-rs = { version = "3.0.0", path = "../quickjs-wasm-rs" }
serde_json = { version = "1.0", optional = true }
serde-transcode = { version = "1.1", optional = true }
rmp-serde = { version = "^1.1", optional = true }
Expand Down
2 changes: 2 additions & 0 deletions crates/quickjs-wasm-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [3.0.0] - 2024-01-31

### Changed

- Make `JSContextRef::wrap_rust_value` private. Similar to
Expand Down
4 changes: 2 additions & 2 deletions crates/quickjs-wasm-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quickjs-wasm-rs"
version = "3.0.0-alpha.1"
version = "3.0.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -11,7 +11,7 @@ categories = ["api-bindings"]

[dependencies]
anyhow = { workspace = true }
quickjs-wasm-sys = { version = "1.2.0-alpha.1", path = "../quickjs-wasm-sys" }
quickjs-wasm-sys = { version = "1.2.0", path = "../quickjs-wasm-sys" }
serde = { version = "1.0", features = ["derive"] }
once_cell = "1.19"

Expand Down
4 changes: 3 additions & 1 deletion crates/quickjs-wasm-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## Unreleased changes

## [1.2.0] - 2024-01-31

- Changed: Updated to 2023-12-09 release of QuickJS.

Expand Down
2 changes: 1 addition & 1 deletion crates/quickjs-wasm-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quickjs-wasm-sys"
version = "1.2.0-alpha.1"
version = "1.2.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down

0 comments on commit 1a18696

Please sign in to comment.