File tree Expand file tree Collapse file tree 10 files changed +30
-25
lines changed
partiql-conformance-test-generator
partiql-conformance-tests Expand file tree Collapse file tree 10 files changed +30
-25
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 22authors = [" PartiQL Team <partiql-team@amazon.com>" ]
33homepage = " https://github.com/partiql/partiql-lang-rust"
44repository = " https://github.com/partiql/partiql-lang-rust"
5- version = " 0.2 .0"
5+ version = " 0.3 .0"
66edition = " 2021"
77
88[workspace ]
@@ -33,4 +33,4 @@ opt-level = 3
3333
3434[profile .bench ]
3535debug = true
36- lto = true
36+ lto = true
Original file line number Diff line number Diff line change @@ -38,4 +38,4 @@ serde = [
3838
3939[dependencies .partiql-ast-macros ]
4040path = " partiql-ast-macros"
41- version = " 0.2 .*"
41+ version = " 0.3 .*"
Original file line number Diff line number Diff line change @@ -26,4 +26,4 @@ quote = "1.0.*"
2626syn = {version =" 1.0.*" , default-features = true , features =[" full" ]}
2727proc-macro2 = " 1.0.*"
2828darling = " 0.14.*"
29- Inflector = " 0.11.*"
29+ Inflector = " 0.11.*"
Original file line number Diff line number Diff line change @@ -27,4 +27,4 @@ codegen = "0.2.*"
2727Inflector = " 0.11.*"
2828miette = " 5.*"
2929thiserror = " 1.0"
30- quote = " 1.*"
30+ quote = " 1.*"
Original file line number Diff line number Diff line change @@ -29,15 +29,15 @@ bench = false
2929
3030[build-dependencies ]
3131miette = { 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
4242ion-rs = " 0.16"
4343
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ edition.workspace = true
2121bench = 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 .*" }
2626petgraph = " 0.6.*"
2727ordered-float = " 3.*"
2828itertools = " 0.10.*"
Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ edition.workspace = true
2121bench = 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 .*" }
2828ordered-float = " 3.*"
2929itertools = " 0.10.*"
3030unicase = " 2.*"
@@ -36,4 +36,4 @@ assert_matches = "1.5.*"
3636once_cell = " 1"
3737
3838[dev-dependencies ]
39- partiql-eval = { path = " ../partiql-eval" , version = " 0.2 .*" }
39+ partiql-eval = { path = " ../partiql-eval" , version = " 0.3 .*" }
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ edition.workspace = true
2121bench = false
2222
2323[dependencies ]
24- partiql-value = { path = " ../partiql-value" , version = " 0.2 .*" }
24+ partiql-value = { path = " ../partiql-value" , version = " 0.3 .*" }
2525ordered-float = " 3.*"
2626itertools = " 0.10.*"
2727unicase = " 2.*"
Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ bench = false
2525lalrpop = " 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
3131thiserror = " 1.0"
3232
You can’t perform that action at this time.
0 commit comments