Skip to content

Commit e216db8

Browse files
authored
Prepare for release 3.1.0 (#750)
Update release notes, version, comment out a broken factory job. ## Usage and product changes ## Implementation
1 parent 2769369 commit e216db8

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

.factory/automation.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,15 @@ config:
2323
typedb-protocol: [build, release]
2424

2525
build:
26-
quality:
27-
filter:
28-
owner: typedb
29-
branch: [master, development]
30-
dependency-analysis:
31-
image: typedb-ubuntu-22.04
32-
command: |
33-
bazel run @typedb_dependencies//factory/analysis:dependency-analysis
26+
# TODO: It is broken, while not being very beneficial. Check the deps manually. Consider returning this in the future
27+
# quality:
28+
# filter:
29+
# owner: typedb
30+
# branch: [master, development]
31+
# dependency-analysis:
32+
# image: typedb-ubuntu-22.04
33+
# command: |
34+
# bazel run @typedb_dependencies//factory/analysis:dependency-analysis
3435

3536
correctness:
3637
build:

RELEASE_NOTES_LATEST.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ Documentation: https://typedb.com/docs/drivers/rust/overview
99

1010

1111
```sh
12-
cargo add [email protected]-rc1
12+
1313
```
1414

1515

1616
### Java driver
1717

18-
Available through [https://repo.typedb.com](https://cloudsmith.io/~typedb/repos/public-release/packages/detail/maven/typedb-driver/3.1.0-rc1/a=noarch;xg=com.typedb/)
18+
Available through [https://repo.typedb.com](https://cloudsmith.io/~typedb/repos/public-release/packages/detail/maven/typedb-driver/3.1.0/a=noarch;xg=com.typedb/)
1919
Documentation: https://typedb.com/docs/drivers/java/overview
2020

2121
```xml
@@ -29,7 +29,7 @@ Documentation: https://typedb.com/docs/drivers/java/overview
2929
<dependency>
3030
<groupid>com.typedb</groupid>
3131
<artifactid>typedb-driver</artifactid>
32-
<version>3.1.0-rc1</version>
32+
<version>3.1.0</version>
3333
</dependency>
3434
</dependencies>
3535
```
@@ -42,7 +42,7 @@ Documentation: https://typedb.com/docs/drivers/python/overview
4242
Available through https://pypi.org
4343

4444
```
45-
pip install typedb-driver==3.1.0rc1
45+
pip install typedb-driver==3.1.0
4646
```
4747

4848
## New Features
@@ -82,8 +82,8 @@ pip install typedb-driver==3.1.0rc1
8282

8383

8484
## Code Refactors
85-
86-
85+
86+
8787

8888
## Other Improvements
8989

@@ -102,4 +102,3 @@ pip install typedb-driver==3.1.0rc1
102102

103103
- **Update Rust version to 1.81.0**
104104

105-

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.0-rc1
1+
3.1.0

dependencies/typedb/repositories.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ def typedb_dependencies():
2121
git_repository(
2222
name = "typedb_dependencies",
2323
remote = "https://github.com/typedb/typedb-dependencies",
24-
commit = "cf9c1707c7896d61ff97bbf60b1880852ad42353", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_dependencies
24+
commit = "6b9bc322bab187ebad65b192c129feffd6c704f4", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_dependencies
2525
)
2626

2727
def typedb_protocol():
2828
git_repository(
2929
name = "typedb_protocol",
3030
remote = "https://github.com/typedb/typedb-protocol",
31-
commit = "7c7e24c43a59ac3e3b2c4bb17566eb9478099c21", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_protocol
31+
tag = "3.1.0", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_protocol
3232
)
3333

3434
def typedb_behaviour():
3535
git_repository(
3636
name = "typedb_behaviour",
3737
remote = "https://github.com/typedb/typedb-behaviour",
38-
commit = "3e4fe8c38e5a01ea9b198ee23c31cc832e003086", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_behaviour
38+
commit = "7c2df22e4378b32e53440df4a7b20d59f2ea0e28", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_behaviour
3939
)

0 commit comments

Comments
 (0)