Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/package-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Package Release
on:
push:
branches:
- main
jobs:
release:
# dependency order: the macro crate first, then the lib that pins it.
uses: rainlanguage/rainix/.github/workflows/rainix-autopublish.yaml@main
with:
crates: wasm-bindgen-utils-macros wasm-bindgen-utils
secrets: inherit
73 changes: 0 additions & 73 deletions .github/workflows/publish.yml

This file was deleted.

56 changes: 28 additions & 28 deletions Cargo.lock

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

9 changes: 7 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "wasm-bindgen-utils"
description = "Provides utilities and helpers that make working with wasm-bindgen easy"
edition = "2021"
license = "LicenseRef-DCL-1.0"
version = "0.0.12-alpha.39"
version = "0.1.0-alpha.0"
repository = "https://github.com/rainlanguage/rain.wasm"

[dependencies]
Expand Down Expand Up @@ -32,4 +32,9 @@ trybuild = "1.0"

[workspace.dependencies.wasm-bindgen-utils-macros]
path = "macros"
version = "=0.0.7-alpha.39"
# No exact "=" pin: the macro emits only #[wasm_bindgen] attrs and
# external-crate paths, never wasm_bindgen_utils internals, so lockstep
# versions aren't required. The workspace autopublish bumps both crates
# together and rewrites this requirement in one `cargo release --workspace`
# commit.
version = "0.1.0-alpha.0"
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-bindgen-utils-macros"
version = "0.0.7-alpha.39"
version = "0.1.0-alpha.0"
edition = "2021"
license = "LicenseRef-DCL-1.0"
description = "Provides helper proc macros for wasm-bindgen-utils"
Expand Down
Loading