Skip to content

Commit

Permalink
bump VERSION and deps to released tags, and update templates and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
flyingsilverfin committed May 20, 2021
1 parent 11151f8 commit c641d25
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 14 deletions.
4 changes: 2 additions & 2 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ To learn about the methods available on the concepts retrieved as the answers to
<dependency>
<groupId>com.vaticle.typedb</groupId>
<artifactId>typedb-client</artifactId>
<version>2.0.0</version>
<version>{version}</version>
</dependency>
</dependencies>
```
Expand Down
3 changes: 0 additions & 3 deletions RELEASE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.**
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.2
2.1.0
12 changes: 6 additions & 6 deletions dependencies/vaticle/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
2 changes: 1 addition & 1 deletion deployment.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@

deployment = {
"github.organisation": "vaticle",
"github.repository": "client-java"
"github.repository": "typedb-client-java"
}

0 comments on commit c641d25

Please sign in to comment.