Skip to content

Commit c7bdc17

Browse files
Update VERSION to 3.4.0 and create release notes (#296)
1 parent 4a20ac0 commit c7bdc17

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ features = {}
4646

4747
[dependencies.typedb-driver]
4848
features = []
49-
rev = "3b171274a42751376b2a480baa40315ebbf80fce"
5049
git = "https://github.com/typedb/typedb-driver"
50+
tag = "3.4.0"
5151
default-features = false
5252

5353
[dependencies.futures]

RELEASE_NOTES_LATEST.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,24 @@
11
## Distribution
22

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

55

66
## New Features
77
- **Introduce database export and import**
8-
Add database export and database import operations.
9-
8+
Add database export and database import operations.
9+
1010
Database export saves the database information (its schema and data) on the client machine as two files at provided locations:
1111
```
1212
# database export <name> <schema file location> <data file location>
1313
database export my-database export/my-database.typeql export/my-database.typedb
1414
```
15-
15+
1616
Database import uses the exported files to create a new database with equivalent schema and data:
1717
```
1818
# database export <name> <schema file location> <data file location>
1919
database import their-database export/my-database.typeql export/my-database.typedb
2020
```
2121

22-
2322
- **Support relative script and source commands**
2423

2524
We support using relative paths for the `--script` command (relative to the current directory), as well as relative paths for the REPL `source` command.
@@ -35,4 +34,6 @@ Download from TypeDB Package Repository: https://cloudsmith.io/~typedb/repos/pub
3534

3635

3736
## Other Improvements
38-
37+
- **Update zlib dependency**
38+
Support build on Apple Clang 17+ by updating dependencies (details: https://github.com/typedb/typedb-dependencies/pull/577).
39+

VERSION

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

dependencies/typedb/repositories.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def typedb_driver():
1515
git_repository(
1616
name = "typedb_driver",
1717
remote = "https://github.com/typedb/typedb-driver",
18-
commit = "3b171274a42751376b2a480baa40315ebbf80fce", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_driver
18+
tag = "3.4.0", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_driver
1919
)
2020

2121
def typeql():

0 commit comments

Comments
 (0)