Skip to content

Commit 93de31d

Browse files
Prepare release 3.5.0 (#309)
## Usage and product changes Update version, release notes, dependencies
1 parent 8908d95 commit 93de31d

File tree

6 files changed

+83
-38
lines changed

6 files changed

+83
-38
lines changed

Cargo.lock

Lines changed: 63 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ features = {}
2020

2121
[dependencies.tokio]
2222
features = ["bytes", "default", "fs", "full", "io-std", "io-util", "libc", "macros", "mio", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "signal-hook-registry", "socket2", "sync", "time", "tokio-macros"]
23-
version = "1.45.0"
23+
version = "1.47.1"
2424
default-features = false
2525

2626
[dependencies.glob]
2727
features = []
28-
version = "0.3.2"
28+
version = "0.3.3"
2929
default-features = false
3030

3131
[dependencies.futures]
@@ -55,24 +55,24 @@ features = {}
5555

5656
[dependencies.clap]
5757
features = ["color", "default", "derive", "error-context", "help", "std", "suggestions", "usage", "wrap_help"]
58-
version = "4.5.38"
58+
version = "4.5.45"
5959
default-features = false
6060

6161
[dependencies.typeql]
6262
features = []
6363
git = "https://github.com/typedb/typeql"
64-
tag = "3.5.0-rc0"
64+
tag = "3.5.0"
6565
default-features = false
6666

6767
[dependencies.typedb-driver]
6868
features = []
6969
git = "https://github.com/typedb/typedb-driver"
70-
tag = "3.5.0-rc0"
70+
tag = "3.5.0"
7171
default-features = false
7272

7373
[dependencies.serde_json]
7474
features = ["alloc", "default", "indexmap", "preserve_order", "raw_value", "std"]
75-
version = "1.0.140"
75+
version = "1.0.143"
7676
default-features = false
7777

7878
[dependencies.sentry]

RELEASE_NOTES_LATEST.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Distribution
22

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

55

66
## New Features
@@ -16,6 +16,11 @@ Download from TypeDB Package Repository: https://cloudsmith.io/~typedb/repos/pub
1616

1717

1818
## Other Improvements
19+
- **Fix incorrect error println**
20+
21+
- **Fix build and cargo lock**
22+
Fix build and cargo lock
23+
1924
- **Introduce 'create-init' command to load a new database from schema/data**
2025

2126
We introduce a new command `database create-init`, which
@@ -50,3 +55,6 @@ Download from TypeDB Package Repository: https://cloudsmith.io/~typedb/repos/pub
5055
```
5156

5257
These commands can also receive local in relative or absolute path formats.
58+
59+
60+

VERSION

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

dependencies/typedb/repositories.bzl

Lines changed: 3 additions & 3 deletions
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 = "fac1121c903b0c9e5924d391a883e4a0749a82a2", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_dependencies
11+
commit = "f6e710f9857b1c30ad1764c1c41afce4e4e02981", # 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.5.0-rc0", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_driver
18+
tag = "3.5.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.5.0-rc0", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_driver
25+
tag = "3.5.0", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_driver
2626
)

tool/runner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ features = {}
1616

1717
[dependencies.clap]
1818
features = ["color", "default", "derive", "error-context", "help", "std", "suggestions", "usage", "wrap_help"]
19-
version = "4.5.38"
19+
version = "4.5.45"
2020
default-features = false
2121

2222
[dependencies.tempdir]

0 commit comments

Comments
 (0)