Skip to content

Commit 8a4c93b

Browse files
committed
Update dependencies. Update version to 3.1.0-rc0 and release notes
1 parent c3651b6 commit 8a4c93b

File tree

5 files changed

+24
-18
lines changed

5 files changed

+24
-18
lines changed

RELEASE_NOTES_LATEST.md

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,38 @@
33

44
Available through https://crates.io/crates/typeql.
55
```
6-
cargo add typeql@3.0.5
6+
cargo add typeql@3.1.0-rc0
77
```
88

9+
910
## New Features
11+
- **3.0 distinct**
1012

13+
Added the `distinct` query pipeline stage.
1114

1215
## Bugs Fixed
13-
14-
15-
## Code Refactors
16-
- **Enhance error printing and query source span availability**
16+
- **Allow duration literals without date component**
1717

18-
We improve the error messages to show a `^` column indicator along with `-->` line indicator:
19-
```
20-
define
21-
attribute name value string;
22-
--> entity person owns name @range(0..10);
23-
^
24-
```
18+
We modify the grammar to accept a `duration_literal` without a date component (e.g. `PT1S`) as per the standard.
2519

26-
We also expose more information about where in the original query spans which sourced various internal data structures.
2720

21+
22+
## Code Refactors
23+
- **Restrict by grammar refactoring type_ref and named_type**
24+
Restrict by grammar refactoring type_ref and named_type
2825

2926

3027

3128
## Other Improvements
29+
30+
- **Rustfmt**
31+
32+
- **Simplify formatting**
33+
34+
- **remove py env**
35+
36+
- **spanned for distinct**
3237

38+
- **Grammar fix**
3339

3440

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.5
1+
3.1.0-rc0

dependencies/typedb/repositories.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ def typedb_dependencies():
88
git_repository(
99
name = "typedb_dependencies",
1010
remote = "https://github.com/typedb/typedb-dependencies",
11-
commit = "70e8b662d2b3f10bba64befcc2c5183949eb9efa", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_dependencies
11+
commit = "b4238789491bc0976407fe78a17d0a906f69c186", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_dependencies
1212
)
1313

1414
def typedb_behaviour():
1515
git_repository(
1616
name = "typedb_behaviour",
1717
remote = "https://github.com/typedb/typedb-behaviour",
18-
commit = "3706a2ac688986baedde07161ad38a686d1183c4", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_behaviour
18+
commit = "c31a439fcffd7628aebe60ce260ed7164cbf926b", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_behaviour
1919
)

java/test/behaviour/typeql/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ java_test(
3232
],
3333
data = [
3434
"@typedb_behaviour//query/explanation:features",
35+
"@typedb_behaviour//query/functions:features",
3536
"@typedb_behaviour//query/language:features",
36-
"@typedb_behaviour//query/reasoner:features",
3737
],
3838
visibility = ["//visibility:public"],
3939
size = "small",

rust/tests/behaviour/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ rust_test(
1111
srcs = ["test_behaviour.rs", "steps.rs"],
1212
data = [
1313
"@typedb_behaviour//query/explanation:features",
14+
"@typedb_behaviour//query/functions:features",
1415
"@typedb_behaviour//query/language:features",
15-
"@typedb_behaviour//query/reasoner:features",
1616
],
1717
deps = [
1818
"//rust:typeql",

0 commit comments

Comments
 (0)