From 7f72d269dad77f3e64a563105ad78212fcc825b5 Mon Sep 17 00:00:00 2001 From: John Lapeyre Date: Sun, 28 Jan 2024 17:19:20 -0500 Subject: [PATCH] Bump version to 0.0.2 This tags as a release a commit that the Qiskit QASM 3 importer can depend on. Starting with the commit that hte QASM 3 importer depends on, two commits have been added on top: A change in the README, and this commit bumping the version. After this. The importer can depend on version 0.0.2 --- Cargo.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 69fe991..f10ae6b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.0.1" +version = "0.0.2" rust-version = "1.70" edition = "2021" license = "Apache-2.0" @@ -15,8 +15,8 @@ repository = "https://github.com/Qiskit/openqasm3_parser" [workspace.dependencies] # local crates -oq3_lexer = { path = "crates/oq3_lexer", version = "0.0.1" } -oq3_parser = { path = "crates/oq3_parser", version = "0.0.1" } -oq3_syntax = { path = "crates/oq3_syntax", version = "0.0.1" } -oq3_semantics = { path = "crates/oq3_semantics", version = "0.0.1" } -oq3_source_file = { path = "crates/oq3_source_file", version = "0.0.1" } +oq3_lexer = { path = "crates/oq3_lexer", version = "0.0.2" } +oq3_parser = { path = "crates/oq3_parser", version = "0.0.2" } +oq3_syntax = { path = "crates/oq3_syntax", version = "0.0.2" } +oq3_semantics = { path = "crates/oq3_semantics", version = "0.0.2" } +oq3_source_file = { path = "crates/oq3_source_file", version = "0.0.2" }