From 4ddc6f09960138e77c2e478511ec7f4bc00f5c18 Mon Sep 17 00:00:00 2001 From: Joshua Send Date: Mon, 10 Aug 2020 16:56:27 +0100 Subject: [PATCH] Prepare for 1.8.2 Release (#151) ## What is the goal of this PR? Prepare for 1.8.2 release. Bump VERSION and dependencies to tags. ## What are the changes implemented in this PR? * bump VERSION * update dependencies to use released tags --- VERSION | 2 +- WORKSPACE | 1 + dependencies/graknlabs/artifacts.bzl | 2 +- dependencies/graknlabs/repositories.bzl | 8 ++++---- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/VERSION b/VERSION index a8fdfda1c7..53adb84c82 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.8.1 +1.8.2 diff --git a/WORKSPACE b/WORKSPACE index 1dd4e1aa77..89d46bce8a 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -123,6 +123,7 @@ rules_pkg_dependencies() load("//dependencies/graknlabs:repositories.bzl", "graknlabs_common") graknlabs_common() +load("//dependencies/graknlabs:repositories.bzl", "graknlabs_common") load("@graknlabs_common//dependencies/maven:artifacts.bzl", graknlabs_common_artifacts = "artifacts") ######################### diff --git a/dependencies/graknlabs/artifacts.bzl b/dependencies/graknlabs/artifacts.bzl index 215f94455f..c1c050f64e 100644 --- a/dependencies/graknlabs/artifacts.bzl +++ b/dependencies/graknlabs/artifacts.bzl @@ -24,5 +24,5 @@ def graknlabs_grakn_core_artifact(): name = "graknlabs_grakn_core_artifact", group_name = "graknlabs_grakn_core", artifact_name = "grakn-core-all-linux-{version}.tar.gz", - commit = "7cc0fcc8e44eb419f540b5ccedb4fcfe23c26e32", + commit = "1c91c824aa208ad77c14ab7ee3ea6f6de7cff467", ) diff --git a/dependencies/graknlabs/repositories.bzl b/dependencies/graknlabs/repositories.bzl index e86e41f21a..88f194e226 100644 --- a/dependencies/graknlabs/repositories.bzl +++ b/dependencies/graknlabs/repositories.bzl @@ -23,14 +23,14 @@ def graknlabs_graql(): git_repository( name = "graknlabs_graql", remote = "https://github.com/graknlabs/graql", - commit = "4aa5ae0be36ad23a9092efd85edf9037a6fbc0c1" # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_graql + tag = "1.0.8" # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_graql ) def graknlabs_common(): git_repository( name = "graknlabs_common", remote = "https://github.com/graknlabs/common", - commit = "f4e43ee40d92b0a124bc6eff5c22c7ce1cb081b6" # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_common + tag = "0.2.3" # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_common ) def graknlabs_dependencies(): @@ -44,7 +44,7 @@ def graknlabs_protocol(): git_repository( name = "graknlabs_protocol", remote = "https://github.com/graknlabs/protocol", - commit = "ae12f6c3829cd5304f3bb4ba865f5fcc10022738", # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_protocol + tag = "1.0.7", # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_protocol ) def graknlabs_verification(): @@ -58,5 +58,5 @@ def graknlabs_grabl_tracing(): git_repository( name = "graknlabs_grabl_tracing", remote = "https://github.com/graknlabs/grabl-tracing", - commit = "242dd019f229790732dec35ac34064601b03c363" # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_grabl_tracing + commit = "0.1.1" # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_grabl_tracing )