Skip to content

Commit

Permalink
Bump version to 0.17 (#3085)
Browse files Browse the repository at this point in the history
  • Loading branch information
jedel1043 committed Jul 2, 2023
1 parent a9a2e1b commit 9b1f2f4
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 25 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,13 @@ jobs:
run: |
git config --global user.email "runner@gha.local"
git config --global user.name "Github Action"
cargo workspaces publish --from-git --yes minor
cargo workspaces publish \
--from-git \
--yes \
--no-git-commit \
--no-git-push \
--no-individual-tags \
skip
doc-publish:
# needs: publish
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.16.0"
version = "0.17.0"
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.16.0", path = "boa_ast" }
boa_engine = { version = "0.16.0", path = "boa_engine" }
boa_gc = { version = "0.16.0", path = "boa_gc" }
boa_icu_provider = { version = "0.16.0", path = "boa_icu_provider" }
boa_interner = { version = "0.16.0", path = "boa_interner" }
boa_macros = { version = "0.16.0", path = "boa_macros" }
boa_parser = { version = "0.16.0", path = "boa_parser" }
boa_profiler = { version = "0.16.0", path = "boa_profiler" }
boa_runtime = { version = "0.16.0", path = "boa_runtime" }
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" }

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

0 comments on commit 9b1f2f4

Please sign in to comment.