Skip to content

Commit

Permalink
Added semver checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Razican committed Jul 25, 2023
1 parent e6b600c commit 97f9959
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 24 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ jobs:
run: cargo clippy --all-features --all-targets
- name: Lint (No features)
run: cargo clippy -p boa_engine --no-default-features --all-targets
- name: Check semver
uses: obi1kenobi/cargo-semver-checks-action@v2
- name: Generate documentation
run: cargo doc -v --document-private-items --all-features
- name: Build
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 @@ -18,23 +18,23 @@ members = [

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

[workspace.dependencies]
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.1-dev", path = "boa_ast" }
boa_engine = { version = "0.17.1-dev", path = "boa_engine" }
boa_gc = { version = "0.17.1-dev", path = "boa_gc" }
boa_icu_provider = { version = "0.17.1-dev", path = "boa_icu_provider" }
boa_interner = { version = "0.17.1-dev", path = "boa_interner" }
boa_macros = { version = "0.17.1-dev", path = "boa_macros" }
boa_parser = { version = "0.17.1-dev", path = "boa_parser" }
boa_profiler = { version = "0.17.1-dev", path = "boa_profiler" }
boa_runtime = { version = "0.17.1-dev", path = "boa_runtime" }

[workspace.metadata.workspaces]
allow_branch = "main"
Expand Down

0 comments on commit 97f9959

Please sign in to comment.