diff --git a/BUILD b/BUILD index 3a60084ed4..c95f25d2c8 100644 --- a/BUILD +++ b/BUILD @@ -90,10 +90,10 @@ deploy_maven( deploy_github( name = "deploy-github", draft = False, - organisation = github_deployment["github.organisation"], + title = "TypeDB Client Java", release_description = "//:RELEASE_TEMPLATE.md", + organisation = github_deployment["github.organisation"], repository = github_deployment["github.repository"], - title = "TypeDB Client Java", title_append_version = True, ) diff --git a/README.md b/README.md index 95803f7ae4..2659470d91 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ To learn about the methods available on the concepts retrieved as the answers to com.vaticle.typedb typedb-client - 2.0.0 + {version} ``` diff --git a/RELEASE_TEMPLATE.md b/RELEASE_TEMPLATE.md index 5df030f068..075a30f2e6 100644 --- a/RELEASE_TEMPLATE.md +++ b/RELEASE_TEMPLATE.md @@ -22,6 +22,3 @@ Available through https://repo.vaticle.com { release notes } ---- - -**Please refer to [full release notes of 2.0.0-alpha](https://github.com/vaticle/typedb-client-java/releases/tag/2.0.0-alpha) to see the changes contained in 2.0.0.** diff --git a/VERSION b/VERSION index e9307ca575..7ec1d6db40 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.2 +2.1.0 diff --git a/dependencies/vaticle/repositories.bzl b/dependencies/vaticle/repositories.bzl index a2aefd01c8..db8a870d61 100644 --- a/dependencies/vaticle/repositories.bzl +++ b/dependencies/vaticle/repositories.bzl @@ -25,40 +25,40 @@ def vaticle_typeql_lang_java(): git_repository( name = "vaticle_typeql_lang_java", remote = "https://github.com/vaticle/typeql-lang-java", - commit = "077ce7c7067f51bf05ae73384a757191b6c65b4e", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typeql_lang_java + tag = "2.1.0", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typeql_lang_java ) def vaticle_typedb_common(): git_repository( name = "vaticle_typedb_common", remote = "https://github.com/vaticle/typedb-common", - commit = "20c5796622c46453bc4e0c81533dfd602a3f46a0" # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_common + tag = "2.1.0" # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_common ) def vaticle_dependencies(): git_repository( name = "vaticle_dependencies", remote = "https://github.com/vaticle/dependencies", - commit = "3a58ebd1f1e249b21b8d8bd07c7415d127aa9dc1", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies + commit = "515d6adf719cc7e78f9d313e6c97bce9f918b60b", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies ) def vaticle_typedb_protocol(): git_repository( name = "vaticle_typedb_protocol", remote = "https://github.com/vaticle/typedb-protocol", - commit = "d608bb39f21013ed0e569581b599900d1d60ede2", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_protocol + tag = "2.1.0", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_protocol ) def vaticle_typedb_behaviour(): git_repository( name = "vaticle_typedb_behaviour", remote = "https://github.com/vaticle/typedb-behaviour", - commit = "d805084d1bf1364330c36f581d3a1b024a419d7e", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_behaviour + commit = "6d5f05f8f07621bc8803d47404e225c85ec11bc6", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_behaviour ) def vaticle_factory_tracing(): git_repository( name = "vaticle_factory_tracing", remote = "https://github.com/vaticle/factory-tracing", - commit = "183874a9601e4d530d264dde7652449e55c1a59e" # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_factory_tracing + tag = "2.1.0" # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_factory_tracing ) diff --git a/deployment.bzl b/deployment.bzl index b42772747c..9ea1cbaf2d 100644 --- a/deployment.bzl +++ b/deployment.bzl @@ -21,5 +21,5 @@ deployment = { "github.organisation": "vaticle", - "github.repository": "client-java" + "github.repository": "typedb-client-java" }