Skip to content

Commit 97f9959

Browse files
committed
Added semver checks
1 parent e6b600c commit 97f9959

File tree

3 files changed

+26
-24
lines changed

3 files changed

+26
-24
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ jobs:
9191
run: cargo clippy --all-features --all-targets
9292
- name: Lint (No features)
9393
run: cargo clippy -p boa_engine --no-default-features --all-targets
94+
- name: Check semver
95+
uses: obi1kenobi/cargo-semver-checks-action@v2
9496
- name: Generate documentation
9597
run: cargo doc -v --document-private-items --all-features
9698
- name: Build

Cargo.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@ members = [
1818

1919
[workspace.package]
2020
edition = "2021"
21-
version = "0.17.0"
21+
version = "0.17.1-dev"
2222
rust-version = "1.66"
2323
authors = ["boa-dev"]
2424
repository = "https://github.com/boa-dev/boa"
2525
license = "Unlicense/MIT"
2626
description = "Boa is a Javascript lexer, parser and compiler written in Rust. Currently, it has support for some of the language."
2727

2828
[workspace.dependencies]
29-
boa_ast = { version = "0.17.0", path = "boa_ast" }
30-
boa_engine = { version = "0.17.0", path = "boa_engine" }
31-
boa_gc = { version = "0.17.0", path = "boa_gc" }
32-
boa_icu_provider = { version = "0.17.0", path = "boa_icu_provider" }
33-
boa_interner = { version = "0.17.0", path = "boa_interner" }
34-
boa_macros = { version = "0.17.0", path = "boa_macros" }
35-
boa_parser = { version = "0.17.0", path = "boa_parser" }
36-
boa_profiler = { version = "0.17.0", path = "boa_profiler" }
37-
boa_runtime = { version = "0.17.0", path = "boa_runtime" }
29+
boa_ast = { version = "0.17.1-dev", path = "boa_ast" }
30+
boa_engine = { version = "0.17.1-dev", path = "boa_engine" }
31+
boa_gc = { version = "0.17.1-dev", path = "boa_gc" }
32+
boa_icu_provider = { version = "0.17.1-dev", path = "boa_icu_provider" }
33+
boa_interner = { version = "0.17.1-dev", path = "boa_interner" }
34+
boa_macros = { version = "0.17.1-dev", path = "boa_macros" }
35+
boa_parser = { version = "0.17.1-dev", path = "boa_parser" }
36+
boa_profiler = { version = "0.17.1-dev", path = "boa_profiler" }
37+
boa_runtime = { version = "0.17.1-dev", path = "boa_runtime" }
3838

3939
[workspace.metadata.workspaces]
4040
allow_branch = "main"

0 commit comments

Comments
 (0)