Skip to content

Commit

Permalink
Bump to verison 0.0.5
Browse files Browse the repository at this point in the history
Trying to get release to work. This time, add a line that might
limit number of parallel jobs to one. So that release of crates
is sequential. We already added a sleep in an earlier attempt.
  • Loading branch information
jlapeyre committed Jan 28, 2024
1 parent 7c3c12d commit 175c7bc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
fail-fast: false
matrix:
crate: [oq3_lexer, oq3_parser, oq3_syntax, oq3_source_file, oq3_semantics]
max-parallel: 1

steps:
- uses: actions/checkout@v4
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "0.0.4"
version = "0.0.5"
rust-version = "1.70"
edition = "2021"
license = "Apache-2.0"
Expand All @@ -15,8 +15,8 @@ repository = "https://github.com/Qiskit/openqasm3_parser"

[workspace.dependencies]
# local crates
oq3_lexer = { path = "crates/oq3_lexer", version = "0.0.4" }
oq3_parser = { path = "crates/oq3_parser", version = "0.0.4" }
oq3_syntax = { path = "crates/oq3_syntax", version = "0.0.4" }
oq3_semantics = { path = "crates/oq3_semantics", version = "0.0.4" }
oq3_source_file = { path = "crates/oq3_source_file", version = "0.0.4" }
oq3_lexer = { path = "crates/oq3_lexer", version = "0.0.5" }
oq3_parser = { path = "crates/oq3_parser", version = "0.0.5" }
oq3_syntax = { path = "crates/oq3_syntax", version = "0.0.5" }
oq3_semantics = { path = "crates/oq3_semantics", version = "0.0.5" }
oq3_source_file = { path = "crates/oq3_source_file", version = "0.0.5" }

0 comments on commit 175c7bc

Please sign in to comment.