Skip to content

Commit

Permalink
Release the first minor version 0.1.0 (#89)
Browse files Browse the repository at this point in the history
This allows packages to depend on the minor version and still be
compatible with patch versions.
  • Loading branch information
jlapeyre committed Jan 31, 2024
1 parent 3e9a05b commit 831fc1f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ jobs:
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- run: date
- run: sleep 120
- run: sleep 60
- run: date
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.7"
version = "0.1.0"
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.7" }
oq3_parser = { path = "crates/oq3_parser", version = "0.0.7" }
oq3_syntax = { path = "crates/oq3_syntax", version = "0.0.7" }
oq3_semantics = { path = "crates/oq3_semantics", version = "0.0.7" }
oq3_source_file = { path = "crates/oq3_source_file", version = "0.0.7" }
oq3_lexer = { path = "crates/oq3_lexer", version = "0.1.0" }
oq3_parser = { path = "crates/oq3_parser", version = "0.1.0" }
oq3_syntax = { path = "crates/oq3_syntax", version = "0.1.0" }
oq3_semantics = { path = "crates/oq3_semantics", version = "0.1.0" }
oq3_source_file = { path = "crates/oq3_source_file", version = "0.1.0" }

0 comments on commit 831fc1f

Please sign in to comment.