File tree Expand file tree Collapse file tree 3 files changed +27
-36
lines changed Expand file tree Collapse file tree 3 files changed +27
-36
lines changed Original file line number Diff line number Diff line change 3
3
4
4
Available through https://crates.io/crates/typeql .
5
5
```
6
- cargo add typeql@3.0.4
6
+ cargo add typeql@3.0.5
7
7
```
8
8
9
9
## New Features
10
- - ** Add 'dec' suffix to decimal literals**
11
- Require decimal literals to be suffixed with 'dec'
10
+
11
+
12
+ ## Bugs Fixed
13
+
14
+
15
+ ## Code Refactors
16
+ - ** Enhance error printing and query source span availability**
17
+
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
+ ```
25
+
26
+ We also expose more information about where in the original query spans which sourced various internal data structures.
27
+
28
+
29
+
30
+
31
+ ## Other Improvements
32
+
33
+
34
+
Original file line number Diff line number Diff line change @@ -6,37 +6,5 @@ Available through https://crates.io/crates/typeql.
6
6
cargo add typeql@{version}
7
7
```
8
8
9
- ## TypeQL Grammar and Language Library distributions for Java
10
-
11
- ``` xml
12
- <repositories >
13
- <repository >
14
- <id >repo.typedb.com</id >
15
- <url >https://repo.typedb.com/public/public-release/maven/</url >
16
- </repository >
17
- </repositories >
18
-
19
- <dependencies >
20
- <dependency >
21
- <groupId >com.typeql</groupId >
22
- <artifactId >typeql-grammar</artifactId >
23
- <version >{version}</version >
24
- </dependency >
25
- <dependency >
26
- <groupId >com.typeql</groupId >
27
- <artifactId >typeql-lang</artifactId >
28
- <version >{version}</version >
29
- </dependency >
30
- </dependencies >
31
- ```
32
-
33
- ## TypeQL Grammar distribution for Python
34
-
35
- Available through https://pypi.org
36
-
37
- ```
38
- pip install typeql-grammar=={version}
39
- ```
40
-
41
9
{ release notes }
42
10
Original file line number Diff line number Diff line change 1
- 3.0.4
1
+ 3.0.5
You can’t perform that action at this time.
0 commit comments