Skip to content

Commit 2cb413a

Browse files
authored
chore: Release (#339)
1 parent ccee459 commit 2cb413a

File tree

10 files changed

+30
-25
lines changed

10 files changed

+30
-25
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99
### Changed
10+
### Added
11+
### Fixes
12+
13+
## [0.3.0] - 2023-04-11
14+
### Changed
1015
- `EvalExpr.evaluate` function now returns a [Cow](https://doc.rust-lang.org/std/borrow/enum.Cow.html) of `Value`
1116
- `Evaluable` trait's `get_vars` function returns by ref
1217
- Refactor of `partiql-eval` crate
@@ -110,7 +115,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
110115
- PartiQL Playground proof of concept (POC)
111116
- PartiQL CLI with REPL and query visualization features
112117

113-
[Unreleased]: https://github.com/partiql/partiql-lang-rust/compare/v0.2.0...HEAD
114-
[0.1.0]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.1.0
115-
[0.2.0]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.2.0
118+
[Unreleased]: https://github.com/partiql/partiql-lang-rust/compare/v0.3.0...HEAD
116119
[0.3.0]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.3.0
120+
[0.2.0]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.2.0
121+
[0.1.0]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.1.0

Cargo.toml

Lines changed: 2 additions & 2 deletions
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.2.0"
5+
version = "0.3.0"
66
edition = "2021"
77

88
[workspace]
@@ -33,4 +33,4 @@ opt-level = 3
3333

3434
[profile.bench]
3535
debug = true
36-
lto = true
36+
lto = true

partiql-ast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ serde = [
3838

3939
[dependencies.partiql-ast-macros]
4040
path = "partiql-ast-macros"
41-
version = "0.2.*"
41+
version = "0.3.*"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ quote = "1.0.*"
2626
syn = {version="1.0.*", default-features = true, features=["full"]}
2727
proc-macro2 = "1.0.*"
2828
darling = "0.14.*"
29-
Inflector = "0.11.*"
29+
Inflector = "0.11.*"

partiql-conformance-test-generator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ codegen = "0.2.*"
2727
Inflector = "0.11.*"
2828
miette = "5.*"
2929
thiserror = "1.0"
30-
quote = "1.*"
30+
quote = "1.*"

partiql-conformance-tests/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ bench = false
2929

3030
[build-dependencies]
3131
miette = { version ="5.*", features = ["fancy"] }
32-
partiql-conformance-test-generator = { path = "../partiql-conformance-test-generator", version = "0.2.*" }
32+
partiql-conformance-test-generator = { path = "../partiql-conformance-test-generator", version = "0.3.*" }
3333

3434
[dependencies]
35-
partiql-parser = { path = "../partiql-parser", version = "0.2.*" }
36-
partiql-ast = { path = "../partiql-ast", version = "0.2.*" }
37-
partiql-logical-planner = { path = "../partiql-logical-planner", version = "0.2.*" }
38-
partiql-logical = { path = "../partiql-logical", version = "0.2.*" }
39-
partiql-value = { path = "../partiql-value", version = "0.2.*" }
40-
partiql-eval = { path = "../partiql-eval", version = "0.2.*" }
35+
partiql-parser = { path = "../partiql-parser", version = "0.3.*" }
36+
partiql-ast = { path = "../partiql-ast", version = "0.3.*" }
37+
partiql-logical-planner = { path = "../partiql-logical-planner", version = "0.3.*" }
38+
partiql-logical = { path = "../partiql-logical", version = "0.3.*" }
39+
partiql-value = { path = "../partiql-value", version = "0.3.*" }
40+
partiql-eval = { path = "../partiql-eval", version = "0.3.*" }
4141

4242
ion-rs = "0.16"
4343

partiql-eval/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-logical = { path = "../partiql-logical", version = "0.2.*" }
25-
partiql-value = { path = "../partiql-value", version = "0.2.*" }
24+
partiql-logical = { path = "../partiql-logical", version = "0.3.*" }
25+
partiql-value = { path = "../partiql-value", version = "0.3.*" }
2626
petgraph = "0.6.*"
2727
ordered-float = "3.*"
2828
itertools = "0.10.*"

partiql-logical-planner/Cargo.toml

Lines changed: 5 additions & 5 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.2.*" }
25-
partiql-logical = { path = "../partiql-logical", version = "0.2.*" }
26-
partiql-ast = { path = "../partiql-ast", version = "0.2.*" }
27-
partiql-parser = { path = "../partiql-parser", version = "0.2.*" }
24+
partiql-value = { path = "../partiql-value", version = "0.3.*" }
25+
partiql-logical = { path = "../partiql-logical", version = "0.3.*" }
26+
partiql-ast = { path = "../partiql-ast", version = "0.3.*" }
27+
partiql-parser = { path = "../partiql-parser", version = "0.3.*" }
2828
ordered-float = "3.*"
2929
itertools = "0.10.*"
3030
unicase = "2.*"
@@ -36,4 +36,4 @@ assert_matches = "1.5.*"
3636
once_cell = "1"
3737

3838
[dev-dependencies]
39-
partiql-eval = { path = "../partiql-eval", version = "0.2.*" }
39+
partiql-eval = { path = "../partiql-eval", version = "0.3.*" }

partiql-logical/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.2.*" }
24+
partiql-value = { path = "../partiql-value", version = "0.3.*" }
2525
ordered-float = "3.*"
2626
itertools = "0.10.*"
2727
unicase = "2.*"

partiql-parser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ bench = false
2525
lalrpop = "0.19.8"
2626

2727
[dependencies]
28-
partiql-ast = { path = "../partiql-ast", version = "0.2.*" }
29-
partiql-source-map = { path = "../partiql-source-map", version = "0.2.*" }
28+
partiql-ast = { path = "../partiql-ast", version = "0.3.*" }
29+
partiql-source-map = { path = "../partiql-source-map", version = "0.3.*" }
3030

3131
thiserror = "1.0"
3232

0 commit comments

Comments
 (0)