Skip to content

Commit 42949ab

Browse files
authored
Prepare for release 3.2.0 (#290)
## Usage and product changes Update release notes and dependencies for release 3.2.0 ## Implementation
1 parent 7ae8880 commit 42949ab

File tree

5 files changed

+24
-14
lines changed

5 files changed

+24
-14
lines changed

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ features = {}
4141
[dependencies.typeql]
4242
features = []
4343
git = "https://github.com/typedb/typeql"
44-
tag = "3.2.0-rc2"
44+
tag = "3.2.0"
4545
default-features = false
4646

4747
[dependencies.typedb-driver]
4848
features = []
4949
git = "https://github.com/typedb/typedb-driver"
50-
tag = "3.2.0-rc2"
50+
tag = "3.2.0"
5151
default-features = false
5252

5353
[dependencies.futures]

RELEASE_NOTES_LATEST.md

+15-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
## Distribution
22

3-
Download from TypeDB Package Repository: https://cloudsmith.io/~typedb/repos/public-release/packages/?q=name:^typedb-console+version:3.2.0-rc2
3+
Download from TypeDB Package Repository: https://cloudsmith.io/~typedb/repos/public-release/packages/?q=name:^typedb-console+version:3.2.0
44

55

66
## New Features
7+
- **Add database 'schema' command to retrieve the database schema**
8+
9+
10+
- **Increase transaction timeout**
11+
Set transaction timeout for opened transactions to 1 hour.
12+
13+
This change significantly lowers the impact of https://github.com/typedb/typedb-console/issues/287.
14+
15+
716
- **Improve multiline query support**
817

918
We improve multi-line query support to allow copy-pasting queries and scripts containing empty newlines. In particular this makes pasting entire schema definitions from files.
@@ -57,10 +66,8 @@ Download from TypeDB Package Repository: https://cloudsmith.io/~typedb/repos/pub
5766
```
5867

5968
**Note that now `end` is a reserved keyword and cannot be used as a type!**
60-
61-
62-
- **Add database 'schema' command to retrieve the database schema**
63-
69+
70+
6471

6572
## Bugs Fixed
6673

@@ -70,4 +77,7 @@ Download from TypeDB Package Repository: https://cloudsmith.io/~typedb/repos/pub
7077

7178
## Other Improvements
7279

80+
- **Update typedb-driver dependency for token-based authentication**
81+
82+
7383

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.0-rc2
1+
3.2.0

dependencies/typedb/repositories.bzl

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ def typedb_dependencies():
88
git_repository(
99
name = "typedb_dependencies",
1010
remote = "https://github.com/typedb/typedb-dependencies",
11-
commit = "b92f47300913cc8555ef18580eeaa5b1b1ecd2a1", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_dependencies
11+
commit = "ab777bf067b1930e35146fd8e25a76a4a360aa74", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_dependencies
1212
)
1313

1414
def typedb_driver():
1515
git_repository(
1616
name = "typedb_driver",
1717
remote = "https://github.com/typedb/typedb-driver",
18-
tag = "3.2.0-rc2", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_driver
18+
tag = "3.2.0", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_driver
1919
)
2020

2121
def typeql():
2222
git_repository(
2323
name = "typeql",
2424
remote = "https://github.com/typedb/typeql",
25-
tag = "3.2.0-rc2", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_driver
25+
tag = "3.2.0", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_driver
2626
)

0 commit comments

Comments
 (0)