Skip to content

Commit 010602f

Browse files
authored
chore: Release v0.11.0 (#501)
1 parent 9298a15 commit 010602f

File tree

16 files changed

+78
-60
lines changed

16 files changed

+78
-60
lines changed

CHANGELOG.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
89
## [Unreleased]
910
### Changed
10-
- partiql-ast: fixed pretty-printing of `PIVOT`
11-
- partiql-ast: improved pretty-printing of `CASE` and various clauses
11+
12+
### Added
13+
14+
### Removed
15+
16+
## [0.11.0]
17+
### Changed
1218
- *BREAKING* partiql-catalog: refactored structure of crate; module paths have changes
1319

1420
### Added
@@ -26,6 +32,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2632
- *BREAKING* Removed `const` PartiQL types under `partiql-types` in favor of `PartiqlShapeBuilder`.
2733
- *BREAKING* Removed `StaticType`'s `new`, `new_non_nullable`, and `as_non-nullable` APIs in favor of `PartiqlShapeBuilder`.
2834

35+
36+
## [0.10.1]
37+
### Changed
38+
- partiql-ast: fixed pretty-printing of `PIVOT`
39+
- partiql-ast: improved pretty-printing of `CASE` and various clauses
40+
41+
### Added
42+
43+
### Fixed
44+
2945
## [0.10.0]
3046
### Changed
3147
- *BREAKING:* partiql-ast: added modeling of `EXCLUDE`
@@ -292,7 +308,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
292308
- PartiQL Playground proof of concept (POC)
293309
- PartiQL CLI with REPL and query visualization features
294310

295-
[Unreleased]: https://github.com/partiql/partiql-lang-rust/compare/v0.10.0...HEAD
311+
[Unreleased]: https://github.com/partiql/partiql-lang-rust/compare/v0.11.0...HEAD
312+
[0.11.0]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.11.0
313+
[0.10.1]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.10.1
296314
[0.10.0]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.10.0
297315
[0.9.0]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.9.0
298316
[0.8.0]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.8.0

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.10.0"
5+
version = "0.11.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.10.*" }
24+
partiql-types = { path = "../../partiql-types", version = "0.11.*" }
2525

2626
thiserror = "1.0"
2727
miette = { version = "7", features = ["fancy"] }

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.10.*" }
25-
partiql-value = { path = "../../partiql-value", version = "0.10.*" }
26-
partiql-catalog = { path = "../../partiql-catalog", version = "0.10.*" }
27-
partiql-logical = { path = "../../partiql-logical", version = "0.10.*" }
24+
partiql-extension-ion = { path = "../partiql-extension-ion", version = "0.11.*" }
25+
partiql-value = { path = "../../partiql-value", version = "0.11.*" }
26+
partiql-catalog = { path = "../../partiql-catalog", version = "0.11.*" }
27+
partiql-logical = { path = "../../partiql-logical", version = "0.11.*" }
2828

2929
ordered-float = "4"
3030
itertools = "0.13"
@@ -43,10 +43,10 @@ flate2 = "1.0"
4343

4444
[dev-dependencies]
4545
criterion = "0.5"
46-
partiql-parser = { path = "../../partiql-parser", version = "0.10.*" }
47-
partiql-logical = { path = "../../partiql-logical", version = "0.10.*" }
48-
partiql-logical-planner = { path = "../../partiql-logical-planner", version = "0.10.*" }
49-
partiql-eval = { path = "../../partiql-eval", version = "0.10.*" }
46+
partiql-parser = { path = "../../partiql-parser", version = "0.11.*" }
47+
partiql-logical = { path = "../../partiql-logical", version = "0.11.*" }
48+
partiql-logical-planner = { path = "../../partiql-logical-planner", version = "0.11.*" }
49+
partiql-eval = { path = "../../partiql-eval", version = "0.11.*" }
5050

5151
[features]
5252
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.10.*" }
24+
partiql-value = { path = "../../partiql-value", version = "0.11.*" }
2525
ordered-float = "4"
2626
itertools = "0.13"
2727
unicase = "2.7"

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

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

2323
[dependencies]
24-
partiql-value = { path = "../../partiql-value", version = "0.10.*" }
25-
partiql-catalog = { path = "../../partiql-catalog", version = "0.10.*" }
26-
partiql-logical = { path = "../../partiql-logical", version = "0.10.*" }
24+
partiql-value = { path = "../../partiql-value", version = "0.11.*" }
25+
partiql-catalog = { path = "../../partiql-catalog", version = "0.11.*" }
26+
partiql-logical = { path = "../../partiql-logical", version = "0.11.*" }
2727

2828
ordered-float = "4"
2929
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.10.*" }
25-
partiql-logical = { path = "../../partiql-logical", version = "0.10.*" }
24+
partiql-ast = { path = "../../partiql-ast", version = "0.11.*" }
25+
partiql-logical = { path = "../../partiql-logical", version = "0.11.*" }
2626

2727
dot-writer = { version = "0.1", optional = true }
2828
itertools = { version = "0.13", optional = true }

partiql-ast-passes/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@ path = "src/lib.rs"
2020
bench = false
2121

2222
[dependencies]
23-
partiql-ast = { path = "../partiql-ast", version = "0.10.*" }
24-
partiql-catalog = { path = "../partiql-catalog", version = "0.10.*" }
25-
partiql-common = { path = "../partiql-common", version = "0.10.*" }
26-
partiql-types = { path = "../partiql-types", version = "0.10.*" }
23+
partiql-ast = { path = "../partiql-ast", version = "0.11.*" }
24+
partiql-catalog = { path = "../partiql-catalog", version = "0.11.*" }
25+
partiql-common = { path = "../partiql-common", version = "0.11.*" }
26+
partiql-types = { path = "../partiql-types", version = "0.11.*" }
2727

2828
assert_matches = "1"
2929
fnv = "1"
3030
indexmap = "2.5"
3131
thiserror = "1.0"
3232

3333
[dev-dependencies]
34-
partiql-parser = { path = "../partiql-parser", version = "0.10.*" }
34+
partiql-parser = { path = "../partiql-parser", version = "0.11.*" }
3535

3636
[features]
3737
default = []

partiql-ast/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ path = "src/lib.rs"
2020
bench = false
2121

2222
[dependencies]
23-
partiql-common = { path = "../partiql-common", version = "0.10.*" }
23+
partiql-common = { path = "../partiql-common", version = "0.11.*" }
2424
indexmap = "2.5"
2525
rust_decimal = { version = "1.36.0", default-features = false, features = ["std"] }
2626
serde = { version = "1", features = ["derive"], optional = true }
@@ -39,4 +39,4 @@ serde = [
3939

4040
[dependencies.partiql-ast-macros]
4141
path = "partiql-ast-macros"
42-
version = "0.10.*"
42+
version = "0.11.*"

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-common = { path = "../partiql-common", version = "0.10.*" }
25-
partiql-value = { path = "../partiql-value", version = "0.10.*" }
26-
partiql-logical = { path = "../partiql-logical", version = "0.10.*" }
27-
partiql-types = { path = "../partiql-types", version = "0.10.*" }
24+
partiql-common = { path = "../partiql-common", version = "0.11.*" }
25+
partiql-value = { path = "../partiql-value", version = "0.11.*" }
26+
partiql-logical = { path = "../partiql-logical", version = "0.11.*" }
27+
partiql-types = { path = "../partiql-types", version = "0.11.*" }
2828

2929
thiserror = "1.0"
3030
ordered-float = "4"

0 commit comments

Comments
 (0)