aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Rostovtsev <arostovtsev@google.com>2023-08-11 14:08:33 -0400
committerGitHub <noreply@github.com>2023-08-11 14:08:33 -0400
commit99421bbcd3f00f600d4bf3f14ef5917c5b671f8c (patch)
treedf0e7ef3fbc3ba19009543a70e5c26705be8d1f7
parenta0aa79a09df2d927ad42bb712c8a97586b1d01fa (diff)
downloadstardoc-99421bbcd3f00f600d4bf3f14ef5917c5b671f8c.tar.gz
Prepare release 0.6.2 (#181)upstream/0.6.2
... and fix Windows CI failure (see https://github.com/bazelbuild/continuous-integration/issues/1012)
-rw-r--r--.bazelci/presubmit.yml16
-rw-r--r--CHANGELOG.md9
-rw-r--r--MODULE.bazel2
-rw-r--r--version.bzl2
4 files changed, 15 insertions, 14 deletions
diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml
index 299d81d..aa36cac 100644
--- a/.bazelci/presubmit.yml
+++ b/.bazelci/presubmit.yml
@@ -19,12 +19,10 @@ tasks:
build_and_test_windows:
name: Build and test - Windows
platform: windows
- environment:
- # Workaround for https://github.com/bazelbuild/continuous-integration/issues/1012
- # when using --incompatible_disable_starlark_host_transitions on Windows
- BAZELISK_SHUTDOWN: "1"
build_flags:
- "--incompatible_disable_starlark_host_transitions"
+ # Workaround for https://github.com/bazelbuild/continuous-integration/issues/1012
+ - "--noexperimental_repository_cache_hardlinks"
build_targets:
- "//..."
test_targets:
@@ -45,12 +43,10 @@ tasks:
name: Build and test - Bazel last green - Windows
platform: windows
bazel: last_green
- environment:
- # Workaround for https://github.com/bazelbuild/continuous-integration/issues/1012
- # when using --incompatible_disable_starlark_host_transitions on Windows
- BAZELISK_SHUTDOWN: "1"
build_flags:
- "--incompatible_disable_starlark_host_transitions"
+ # Workaround for https://github.com/bazelbuild/continuous-integration/issues/1012
+ - "--noexperimental_repository_cache_hardlinks"
build_targets:
- "//..."
test_targets:
@@ -72,10 +68,6 @@ tasks:
name: Bzlmod example - Windows
platform: windows
working_directory: test/bzlmod
- environment:
- # Workaround for https://github.com/bazelbuild/continuous-integration/issues/1012
- # when using --incompatible_disable_starlark_host_transitions on Windows
- BAZELISK_SHUTDOWN: "1"
build_flags:
- "--incompatible_disable_starlark_host_transitions"
- "--enable_bzlmod"
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 07da818..08d8e3d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,12 @@
+## Release 0.6.2
+
+Bugfix release: bumps `rules_jvm_external` dependency to support building with
+`--incompatible_disable_starlark_host_transitions`
+
+**Contributors**
+
+Alexandre Rostovtsev
+
## Release 0.6.1
Bugfix release: fix `rules_jvm_external` pin warnings.
diff --git a/MODULE.bazel b/MODULE.bazel
index 3f714dc..1363204 100644
--- a/MODULE.bazel
+++ b/MODULE.bazel
@@ -1,6 +1,6 @@
module(
name = "stardoc",
- version = "0.6.1",
+ version = "0.6.2",
compatibility_level = 1,
)
diff --git a/version.bzl b/version.bzl
index 9af266f..9e7b7c6 100644
--- a/version.bzl
+++ b/version.bzl
@@ -13,4 +13,4 @@
# limitations under the License.
"""The version of Stardoc."""
-version = "0.6.1"
+version = "0.6.2"