File tree 10 files changed +30
-25
lines changed
partiql-conformance-test-generator
partiql-conformance-tests
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
7
7
8
8
## [ Unreleased]
9
9
### Changed
10
+ ### Added
11
+ ### Fixes
12
+
13
+ ## [ 0.3.0] - 2023-04-11
14
+ ### Changed
10
15
- ` EvalExpr.evaluate ` function now returns a [ Cow] ( https://doc.rust-lang.org/std/borrow/enum.Cow.html ) of ` Value `
11
16
- ` Evaluable ` trait's ` get_vars ` function returns by ref
12
17
- Refactor of ` partiql-eval ` crate
@@ -110,7 +115,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
110
115
- PartiQL Playground proof of concept (POC)
111
116
- PartiQL CLI with REPL and query visualization features
112
117
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
116
119
[ 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 2
2
authors = [
" PartiQL Team <[email protected] >" ]
3
3
homepage = " https://github.com/partiql/partiql-lang-rust"
4
4
repository = " https://github.com/partiql/partiql-lang-rust"
5
- version = " 0.2 .0"
5
+ version = " 0.3 .0"
6
6
edition = " 2021"
7
7
8
8
[workspace ]
@@ -33,4 +33,4 @@ opt-level = 3
33
33
34
34
[profile .bench ]
35
35
debug = true
36
- lto = true
36
+ lto = true
Original file line number Diff line number Diff line change @@ -38,4 +38,4 @@ serde = [
38
38
39
39
[dependencies .partiql-ast-macros ]
40
40
path = " 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.*"
26
26
syn = {version =" 1.0.*" , default-features = true , features =[" full" ]}
27
27
proc-macro2 = " 1.0.*"
28
28
darling = " 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.*"
27
27
Inflector = " 0.11.*"
28
28
miette = " 5.*"
29
29
thiserror = " 1.0"
30
- quote = " 1.*"
30
+ quote = " 1.*"
Original file line number Diff line number Diff line change @@ -29,15 +29,15 @@ bench = false
29
29
30
30
[build-dependencies ]
31
31
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 .*" }
33
33
34
34
[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 .*" }
41
41
42
42
ion-rs = " 0.16"
43
43
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ edition.workspace = true
21
21
bench = false
22
22
23
23
[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 .*" }
26
26
petgraph = " 0.6.*"
27
27
ordered-float = " 3.*"
28
28
itertools = " 0.10.*"
Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ edition.workspace = true
21
21
bench = false
22
22
23
23
[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 .*" }
28
28
ordered-float = " 3.*"
29
29
itertools = " 0.10.*"
30
30
unicase = " 2.*"
@@ -36,4 +36,4 @@ assert_matches = "1.5.*"
36
36
once_cell = " 1"
37
37
38
38
[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
21
21
bench = false
22
22
23
23
[dependencies ]
24
- partiql-value = { path = " ../partiql-value" , version = " 0.2 .*" }
24
+ partiql-value = { path = " ../partiql-value" , version = " 0.3 .*" }
25
25
ordered-float = " 3.*"
26
26
itertools = " 0.10.*"
27
27
unicase = " 2.*"
Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ bench = false
25
25
lalrpop = " 0.19.8"
26
26
27
27
[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 .*" }
30
30
31
31
thiserror = " 1.0"
32
32
You can’t perform that action at this time.
0 commit comments