Skip to content

Commit

Permalink
Update VERSION to 3.0 and regenerate release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
flyingsilverfin committed Jan 31, 2025
1 parent 04d6d80 commit 0f1fbbc
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 36 deletions.
29 changes: 26 additions & 3 deletions RELEASE_NOTES_LATEST.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,32 @@

Available through https://crates.io/crates/typeql.
```
cargo add typeql@3.0.4
cargo add typeql@3.0.5
```

## New Features
- **Add 'dec' suffix to decimal literals**
Require decimal literals to be suffixed with 'dec'


## Bugs Fixed


## Code Refactors
- **Enhance error printing and query source span availability**

We improve the error messages to show a `^` column indicator along with `-->` line indicator:
```
define
attribute name value string;
--> entity person owns name @range(0..10);
^
```

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




## Other Improvements



32 changes: 0 additions & 32 deletions RELEASE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,37 +6,5 @@ Available through https://crates.io/crates/typeql.
cargo add typeql@{version}
```

## TypeQL Grammar and Language Library distributions for Java

```xml
<repositories>
<repository>
<id>repo.typedb.com</id>
<url>https://repo.typedb.com/public/public-release/maven/</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>com.typeql</groupId>
<artifactId>typeql-grammar</artifactId>
<version>{version}</version>
</dependency>
<dependency>
<groupId>com.typeql</groupId>
<artifactId>typeql-lang</artifactId>
<version>{version}</version>
</dependency>
</dependencies>
```

## TypeQL Grammar distribution for Python

Available through https://pypi.org

```
pip install typeql-grammar=={version}
```

{ release notes }

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.4
3.0.5

0 comments on commit 0f1fbbc

Please sign in to comment.