Skip to content

Commit df46296

Browse files
authored
chore: Release v0.13.0 (#581)
1 parent 630b2e2 commit df46296

File tree

18 files changed

+78
-70
lines changed

18 files changed

+78
-70
lines changed

CHANGELOG.md

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

99
## [Unreleased]
1010
### Changed
11+
12+
### Added
13+
14+
### Removed
15+
16+
## [0.13.0]
17+
### Changed
1118
- *BREAKING* Heavily refactors evaluation to be stateless
1219
- *BREAKING* Heavily refactors Session & Evaluation Contexts to no longer require lifetime parameters
1320
- *BREAKING* partiql-ast: Removes disused `Sexp` AST node
@@ -335,7 +342,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
335342
- PartiQL Playground proof of concept (POC)
336343
- PartiQL CLI with REPL and query visualization features
337344

338-
[Unreleased]: https://github.com/partiql/partiql-lang-rust/compare/v0.12.0...HEAD
345+
[Unreleased]: https://github.com/partiql/partiql-lang-rust/compare/v0.13.0...HEAD
346+
[0.13.0]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.13.0
339347
[0.12.0]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.12.0
340348
[0.11.0]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.11.0
341349
[0.10.1]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.10.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 <partiql-team@amazon.com>"]
33
homepage = "https://github.com/partiql/partiql-lang-rust"
44
repository = "https://github.com/partiql/partiql-lang-rust"
5-
version = "0.12.0"
5+
version = "0.13.0"
66
edition = "2021"
77
rust-version = "1.86.0"
88

extension/partiql-extension-csv/Cargo.toml

Lines changed: 7 additions & 7 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.12.*" }
25-
partiql-catalog = { path = "../../partiql-catalog", version = "0.12.*" }
26-
partiql-logical = { path = "../../partiql-logical", version = "0.12.*" }
24+
partiql-value = { path = "../../partiql-value", version = "0.13.*" }
25+
partiql-catalog = { path = "../../partiql-catalog", version = "0.13.*" }
26+
partiql-logical = { path = "../../partiql-logical", version = "0.13.*" }
2727

2828
csv = "1"
2929

@@ -40,10 +40,10 @@ thiserror = "1.0"
4040
delegate = "0.13"
4141

4242
[dev-dependencies]
43-
partiql-parser = { path = "../../partiql-parser", version = "0.12.*" }
44-
partiql-logical = { path = "../../partiql-logical", version = "0.12.*" }
45-
partiql-logical-planner = { path = "../../partiql-logical-planner", version = "0.12.*" }
46-
partiql-eval = { path = "../../partiql-eval", version = "0.12.*" }
43+
partiql-parser = { path = "../../partiql-parser", version = "0.13.*" }
44+
partiql-logical = { path = "../../partiql-logical", version = "0.13.*" }
45+
partiql-logical-planner = { path = "../../partiql-logical-planner", version = "0.13.*" }
46+
partiql-eval = { path = "../../partiql-eval", version = "0.13.*" }
4747

4848
insta = "1"
4949

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

2929
ordered-float = "5"
3030
itertools = "0.14"
@@ -41,10 +41,10 @@ zstd = "0.13"
4141
flate2 = "1.0"
4242

4343
[dev-dependencies]
44-
partiql-parser = { path = "../../partiql-parser", version = "0.12.*" }
45-
partiql-logical = { path = "../../partiql-logical", version = "0.12.*" }
46-
partiql-logical-planner = { path = "../../partiql-logical-planner", version = "0.12.*" }
47-
partiql-eval = { path = "../../partiql-eval", version = "0.12.*" }
44+
partiql-parser = { path = "../../partiql-parser", version = "0.13.*" }
45+
partiql-logical = { path = "../../partiql-logical", version = "0.13.*" }
46+
partiql-logical-planner = { path = "../../partiql-logical-planner", version = "0.13.*" }
47+
partiql-eval = { path = "../../partiql-eval", version = "0.13.*" }
4848

4949
insta = "1"
5050

extension/partiql-extension-ion/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.12.*" }
25-
partiql-common = { path = "../../partiql-common", version = "0.12.*" }
26-
partiql-types = { path = "../../partiql-types", version = "0.12.*" }
24+
partiql-value = { path = "../../partiql-value", version = "0.13.*" }
25+
partiql-common = { path = "../../partiql-common", version = "0.13.*" }
26+
partiql-types = { path = "../../partiql-types", version = "0.13.*" }
2727

2828
serde = { version = "1", features = ["derive"], optional = true }
2929
typetag = { version = "0.2", optional = true }

extension/partiql-extension-value-functions/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-value = { path = "../../partiql-value", version = "0.12.*" }
25-
partiql-catalog = { path = "../../partiql-catalog", version = "0.12.*" }
24+
partiql-value = { path = "../../partiql-value", version = "0.13.*" }
25+
partiql-catalog = { path = "../../partiql-catalog", version = "0.13.*" }
2626

2727
ordered-float = "5"
2828
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.12.*" }
25-
partiql-logical = { path = "../../partiql-logical", version = "0.12.*" }
24+
partiql-ast = { path = "../../partiql-ast", version = "0.13.*" }
25+
partiql-logical = { path = "../../partiql-logical", version = "0.13.*" }
2626

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

partiql-ast-passes/Cargo.toml

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

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

2828
fnv = "1"
2929
indexmap = "2"

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.12.*" }
23+
partiql-common = { path = "../partiql-common", version = "0.13.*" }
2424
indexmap = "2"
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.12.*"
42+
version = "0.13.*"

0 commit comments

Comments
 (0)