Skip to content

Commit 8a40219

Browse files
authored
(cargo-release) start next development iteration 0.1.1-alpha.0 (#172)
1 parent f99ce48 commit 8a40219

File tree

11 files changed

+17
-17
lines changed

11 files changed

+17
-17
lines changed

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.0"
16+
version = "0.1.1-alpha.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.0" }
24+
partiql-source-map = { path = "../partiql-source-map", version = "0.1.1-alpha.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 & 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.0"
18+
version = "0.1.1-alpha.0"
1919

2020
[workspace]
2121

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.0"
17+
version = "0.1.1-alpha.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.0"
17+
version = "0.1.1-alpha.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.0" }
34+
partiql-conformance-test-generator = { path = "../partiql-conformance-test-generator", version = "0.1.1-alpha.0" }
3535

3636
[dependencies]
37-
partiql-parser = { path = "../partiql-parser", version = "0.1.0" }
37+
partiql-parser = { path = "../partiql-parser", version = "0.1.1-alpha.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.0"
18+
version = "0.1.1-alpha.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.0"
18+
version = "0.1.1-alpha.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.0"
18+
version = "0.1.1-alpha.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.0" }
26-
partiql-source-map = { path = "../partiql-source-map", version = "0.1.0" }
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" }
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.0"
16+
version = "0.1.1-alpha.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.0"
18+
version = "0.1.1-alpha.0"
1919

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

partiql-source-map/Cargo.toml

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

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

@@ -27,4 +27,4 @@ serde = { version = "1.*", features = ["derive"], optional = true }
2727

2828
[features]
2929
default = []
30-
serde = ["dep:serde", "smallvec/serde"]
30+
serde = ["dep:serde", "smallvec/serde"]

0 commit comments

Comments
 (0)