Skip to content

Commit 5d8d7cb

Browse files
authored
Fix pre-release (#174)
* Fix pre-release - Moves the following pacakges to workspace excluded:   - "partiql-conformance-test-generator" - "partiql-conformance-tests" For both, users can play around with conformance tests using GitHub code. - Removes [workspace] attribute from `partiql-cli` `Cargo.toml`. This is does not seems to be affect partiql-cli build. - Changes the version back to "0.1.0". This seems to be more aligned with other projects as noted by @alancai98 before.
1 parent 22fa1c3 commit 5d8d7cb

File tree

12 files changed

+18
-20
lines changed

12 files changed

+18
-20
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
members = [
44
"partiql",
55
"partiql-ast",
6-
"partiql-conformance-test-generator",
76
"partiql-conformance-tests",
7+
"partiql-conformance-test-generator",
88
"partiql-source-map",
99
"partiql-eval",
1010
"partiql-ir",
@@ -14,7 +14,7 @@ members = [
1414
]
1515

1616
exclude = [
17+
"partiql-cli",
1718
"partiql-playground",
18-
"partiql-cli"
1919
]
2020

partiql-ast/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ exclude = [
1313
"**/.github/**",
1414
]
1515
edition = "2021"
16-
version = "0.1.1-alpha.0"
16+
version = "0.1.0"
1717

1818
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1919

2020
[lib]
2121
path = "src/lib.rs"
2222

2323
[dependencies]
24-
partiql-source-map = { path = "../partiql-source-map", version = "0.1.1-alpha.0" }
24+
partiql-source-map = { path = "../partiql-source-map", version = "0.1.0" }
2525

2626
derive_builder = "~0.11.1"
2727
rust_decimal = { version = "1.25.0", default-features = false, features = ["std"] }

partiql-cli/Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ exclude = [
1515
"**/.appveyor.yml",
1616
]
1717
edition = "2021"
18-
version = "0.1.1-alpha.0"
19-
20-
[workspace]
18+
version = "0.1.0"
2119

2220
# Example of customizing binaries in Cargo.toml.
2321
[[bin]]

partiql-conformance-test-generator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ exclude = [
1414
"**/.travis.yml",
1515
"**/.appveyor.yml",
1616
]
17-
version = "0.1.1-alpha.0"
17+
version = "0.1.0"
1818
edition = "2021"
1919

2020
# TODO: fill in other details

partiql-conformance-tests/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ exclude = [
1414
"**/.travis.yml",
1515
"**/.appveyor.yml",
1616
]
17-
version = "0.1.1-alpha.0"
17+
version = "0.1.0"
1818
edition = "2021"
1919

2020
[[bin]]
@@ -31,10 +31,10 @@ required-features = ["report_tool"]
3131
walkdir = "2.3"
3232
ion-rs = "0.6.0"
3333
codegen = "0.1.3"
34-
partiql-conformance-test-generator = { path = "../partiql-conformance-test-generator", version = "0.1.1-alpha.0" }
34+
partiql-conformance-test-generator = { path = "../partiql-conformance-test-generator", version = "0.1.0" }
3535

3636
[dependencies]
37-
partiql-parser = { path = "../partiql-parser", version = "0.1.1-alpha.0" }
37+
partiql-parser = { path = "../partiql-parser", version = "0.1.0" }
3838

3939
serde = { version = "1.*", features = ["derive"], optional = true }
4040
serde_json = { version = "1.*", optional = true }

partiql-eval/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ exclude = [
1515
"**/.appveyor.yml",
1616
]
1717
edition = "2021"
18-
version = "0.1.1-alpha.0"
18+
version = "0.1.0"
1919

2020
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2121

partiql-irgen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ exclude = [
1515
"**/.appveyor.yml",
1616
]
1717
edition = "2021"
18-
version = "0.1.1-alpha.0"
18+
version = "0.1.0"
1919

2020
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2121

partiql-parser/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ exclude = [
1515
"**/.appveyor.yml",
1616
]
1717
edition = "2021"
18-
version = "0.1.1-alpha.0"
18+
version = "0.1.0"
1919

2020
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2121
[build-dependencies]
2222
lalrpop = "~0.19.7"
2323

2424
[dependencies]
25-
partiql-ast = { path = "../partiql-ast", version = "0.1.1-alpha.0" }
26-
partiql-source-map = { path = "../partiql-source-map", version = "0.1.1-alpha.0" }
25+
partiql-ast = { path = "../partiql-ast", version = "0.1.0" }
26+
partiql-source-map = { path = "../partiql-source-map", version = "0.1.0" }
2727

2828
thiserror = "~1.0.24"
2929

partiql-playground/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exclude = [
1313
"**/.github/**",
1414
]
1515
edition = "2021"
16-
version = "0.1.1-alpha.0"
16+
version = "0.1.0"
1717

1818
[workspace]
1919

partiql-rewriter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ exclude = [
1515
"**/.appveyor.yml",
1616
]
1717
edition = "2021"
18-
version = "0.1.1-alpha.0"
18+
version = "0.1.0"
1919

2020
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2121

0 commit comments

Comments
 (0)