Skip to content

Commit

Permalink
Added semver checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Razican committed Oct 22, 2023
1 parent cec9892 commit 17b2b1c
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 27 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,16 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true

- name: Install cargo-workspaces
uses: actions-rs/[email protected]
with:
crate: cargo-workspaces

- name: Release
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,23 @@ jobs:
- name: Test docs
run: cargo test --doc --profile ci --features annex-b,intl,experimental

semver:
name: SemVer
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions-rs/[email protected]
with:
toolchain: stable
override: true
profile: minimal
- uses: Swatinem/rust-cache@v2
with:
key: semver
- name: Check semver
uses: obi1kenobi/cargo-semver-checks-action@v2

msrv:
name: MSRV
runs-on: ubuntu-latest
Expand Down
28 changes: 14 additions & 14 deletions Cargo.lock

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

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ members = [

[workspace.package]
edition = "2021"
version = "0.17.0"
version = "0.17.4"
rust-version = "1.71.0"
authors = ["boa-dev"]
repository = "https://github.com/boa-dev/boa"
Expand All @@ -29,15 +29,15 @@ description = "Boa is a Javascript lexer, parser and compiler written in Rust. C
[workspace.dependencies]

# Repo Crates
boa_ast = { version = "~0.17.0", path = "boa_ast" }
boa_engine = { version = "~0.17.0", path = "boa_engine" }
boa_gc = { version = "~0.17.0", path = "boa_gc" }
boa_icu_provider = { version = "~0.17.0", path = "boa_icu_provider" }
boa_interner = { version = "~0.17.0", path = "boa_interner" }
boa_macros = { version = "~0.17.0", path = "boa_macros" }
boa_parser = { version = "~0.17.0", path = "boa_parser" }
boa_profiler = { version = "~0.17.0", path = "boa_profiler" }
boa_runtime = { version = "~0.17.0", path = "boa_runtime" }
boa_ast = { version = "0.17.4", path = "boa_ast" }
boa_engine = { version = "0.17.4", path = "boa_engine" }
boa_gc = { version = "0.17.4", path = "boa_gc" }
boa_icu_provider = { version = "0.17.4", path = "boa_icu_provider" }
boa_interner = { version = "0.17.4", path = "boa_interner" }
boa_macros = { version = "0.17.4", path = "boa_macros" }
boa_parser = { version = "0.17.4", path = "boa_parser" }
boa_profiler = { version = "0.17.4", path = "boa_profiler" }
boa_runtime = { version = "0.17.4", path = "boa_runtime" }

# Shared deps
arbitrary = "1"
Expand Down

0 comments on commit 17b2b1c

Please sign in to comment.