Skip to content

Commit 3ca67b7

Browse files
authored
chore: Release v0.9.0 (#479)
1 parent 1fc44de commit 3ca67b7

37 files changed

+65
-59
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99
### Changed
10+
11+
### Added
12+
13+
### Fixed
14+
15+
16+
## [0.9.0]
17+
### Changed
1018
- *BREAKING:* partiql-ast: changed modeling of `BagOpExpr` `setq` field to be an `Option`
1119
- *BREAKING:* partiql-ast: changed modeling of `GroupByExpr` `strategy` field to be an `Option`
1220
- *BREAKING:* partiql-ast: changed modeling of `PathStep` to split `PathExpr` to `PathIndex` (e.g., `[2]`) and `PathProject` (e.g., `.a`)
@@ -256,7 +264,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
256264
- PartiQL Playground proof of concept (POC)
257265
- PartiQL CLI with REPL and query visualization features
258266

259-
[Unreleased]: https://github.com/partiql/partiql-lang-rust/compare/v0.8.0...HEAD
267+
[Unreleased]: https://github.com/partiql/partiql-lang-rust/compare/v0.9.0...HEAD
268+
[0.9.0]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.9.0
260269
[0.8.0]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.8.0
261270
[0.7.2]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.7.2
262271
[0.7.1]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.7.1

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["PartiQL Team <[email protected]>"]
33
homepage = "https://github.com/partiql/partiql-lang-rust"
44
repository = "https://github.com/partiql/partiql-lang-rust"
5-
version = "0.8.0"
5+
version = "0.9.0"
66
edition = "2021"
77

88
[workspace]

extension/partiql-extension-ddl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ edition.workspace = true
2121
bench = false
2222

2323
[dependencies]
24-
partiql-types = { path = "../../partiql-types", version = "0.8.*" }
24+
partiql-types = { path = "../../partiql-types", version = "0.9.*" }
2525

2626
ion-rs = "0.18.1"
2727
thiserror = "1.0"

extension/partiql-extension-ion-functions/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ edition.workspace = true
2121
bench = false
2222

2323
[dependencies]
24-
partiql-extension-ion = {path = "../partiql-extension-ion", version = "0.8.*" }
25-
partiql-value = { path = "../../partiql-value", version = "0.8.*" }
26-
partiql-catalog = { path = "../../partiql-catalog", version = "0.8.*" }
27-
partiql-logical = { path = "../../partiql-logical", version = "0.8.*" }
24+
partiql-extension-ion = {path = "../partiql-extension-ion", version = "0.9.*" }
25+
partiql-value = { path = "../../partiql-value", version = "0.9.*" }
26+
partiql-catalog = { path = "../../partiql-catalog", version = "0.9.*" }
27+
partiql-logical = { path = "../../partiql-logical", version = "0.9.*" }
2828

2929
ordered-float = "3.*"
3030
itertools = "0.10.*"
@@ -42,10 +42,10 @@ flate2 = "1.0"
4242

4343
[dev-dependencies]
4444
criterion = "0.4"
45-
partiql-parser = { path = "../../partiql-parser", version = "0.8.*" }
46-
partiql-logical = { path = "../../partiql-logical", version = "0.8.*" }
47-
partiql-logical-planner = { path = "../../partiql-logical-planner", version = "0.8.*" }
48-
partiql-eval = { path = "../../partiql-eval", version = "0.8.*" }
45+
partiql-parser = { path = "../../partiql-parser", version = "0.9.*" }
46+
partiql-logical = { path = "../../partiql-logical", version = "0.9.*" }
47+
partiql-logical-planner = { path = "../../partiql-logical-planner", version = "0.9.*" }
48+
partiql-eval = { path = "../../partiql-eval", version = "0.9.*" }
4949

5050
[features]
5151
default = []

extension/partiql-extension-ion/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ edition.workspace = true
2121
bench = false
2222

2323
[dependencies]
24-
partiql-value = { path = "../../partiql-value", version = "0.8.*" }
24+
partiql-value = { path = "../../partiql-value", version = "0.9.*" }
2525
ordered-float = "3.*"
2626
itertools = "0.10.*"
2727
unicase = "2.6"

extension/partiql-extension-visualize/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ edition.workspace = true
2121
bench = false
2222

2323
[dependencies]
24-
partiql-ast = { path = "../../partiql-ast", version = "0.8.*" }
25-
partiql-logical = { path = "../../partiql-logical", version = "0.8.*" }
24+
partiql-ast = { path = "../../partiql-ast", version = "0.9.*" }
25+
partiql-logical = { path = "../../partiql-logical", version = "0.9.*" }
2626

2727
dot-writer = { version = "0.1.*", optional = true }
2828
itertools = { version = "0.10.*", optional = true }

partiql-ast-passes/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repository.workspace = true
77
license = "Apache-2.0"
88
readme = "../README.md"
99
keywords = ["sql", "ast", "compilers", "visitors", "passes"]
10-
categories = ["database", "compilers", "ast-implementations"]
10+
categories = ["database", "compilers"]
1111
exclude = [
1212
"**/.git/**",
1313
"**/.github/**",
@@ -20,17 +20,17 @@ path = "src/lib.rs"
2020
bench = false
2121

2222
[dependencies]
23-
partiql-ast = { path = "../partiql-ast", version = "0.8.*" }
24-
partiql-catalog = { path = "../partiql-catalog", version = "0.8.*" }
25-
partiql-types = { path = "../partiql-types", version = "0.8.*" }
23+
partiql-ast = { path = "../partiql-ast", version = "0.9.*" }
24+
partiql-catalog = { path = "../partiql-catalog", version = "0.9.*" }
25+
partiql-types = { path = "../partiql-types", version = "0.9.*" }
2626

2727
assert_matches = "1.5.*"
2828
fnv = "1"
2929
indexmap = "2.2"
3030
thiserror = "1.0"
3131

3232
[dev-dependencies]
33-
partiql-parser = { path = "../partiql-parser", version = "0.8.*" }
33+
partiql-parser = { path = "../partiql-parser", version = "0.9.*" }
3434

3535
[features]
3636
default = []

partiql-ast/Cargo.toml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repository.workspace = true
77
license = "Apache-2.0"
88
readme = "../README.md"
99
keywords = ["sql", "ast", "query", "compilers", "interpreters"]
10-
categories = ["database", "compilers", "ast-implementations"]
10+
categories = ["database", "compilers"]
1111
exclude = [
1212
"**/.git/**",
1313
"**/.github/**",
@@ -26,11 +26,6 @@ serde = { version = "1.*", features = ["derive"], optional = true }
2626
pretty = "0.12"
2727
thiserror = "1.0"
2828

29-
[dev-dependencies]
30-
partiql-parser = { path = "../partiql-parser", version = "0.8" }
31-
itertools = "0.13"
32-
insta = "1.38.0"
33-
3429
[features]
3530
default = []
3631
serde = [
@@ -42,4 +37,4 @@ serde = [
4237

4338
[dependencies.partiql-ast-macros]
4439
path = "partiql-ast-macros"
45-
version = "0.8.*"
40+
version = "0.9.*"

partiql-ast/partiql-ast-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repository.workspace = true
77
license = "Apache-2.0"
88
readme = "../../README.md"
99
keywords = ["sql", "ast", "query", "compilers", "interpreters"]
10-
categories = ["database", "compilers", "ast-implementations"]
10+
categories = ["database", "compilers"]
1111
exclude = [
1212
"**/.git/**",
1313
"**/.github/**",

partiql-catalog/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ edition.workspace = true
2121
bench = false
2222

2323
[dependencies]
24-
partiql-value = { path = "../partiql-value", version = "0.8.*" }
25-
partiql-parser = { path = "../partiql-parser", version = "0.8.*" }
26-
partiql-logical = { path = "../partiql-logical", version = "0.8.*" }
27-
partiql-types = { path = "../partiql-types", version = "0.8.*" }
24+
partiql-value = { path = "../partiql-value", version = "0.9.*" }
25+
partiql-parser = { path = "../partiql-parser", version = "0.9.*" }
26+
partiql-logical = { path = "../partiql-logical", version = "0.9.*" }
27+
partiql-types = { path = "../partiql-types", version = "0.9.*" }
2828

2929
thiserror = "1.0"
3030
ordered-float = "3.*"

0 commit comments

Comments
 (0)