aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXùdōng Yáng <wyverald@gmail.com>2023-11-05 08:16:45 -0800
committerGitHub <noreply@github.com>2023-11-05 11:16:45 -0500
commit9c9beee7411744869300f67a98d42f5081e62ab3 (patch)
tree2eeae2680c8519fe7059773964f5d78c08936ba2
parentd17d36915c1c1a3d6be70131bd1558524338653c (diff)
downloadbazel-skylib-9c9beee7411744869300f67a98d42f5081e62ab3.tar.gz
prepare for release 1.5.0 (#472)upstream/1.5.0
-rw-r--r--CHANGELOG.md16
-rw-r--r--MODULE.bazel2
-rw-r--r--gazelle/MODULE.bazel2
-rw-r--r--version.bzl2
4 files changed, 19 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ace7073..cd7ef4c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,19 @@
+Release 1.5.0
+
+## What's Changed
+* Expose int- and string-valued build settings as Make variables by @fmeum in https://github.com/bazelbuild/bazel-skylib/pull/440
+* Modify actions in order not to need `toolchain` param by @kotlaja in https://github.com/bazelbuild/bazel-skylib/pull/455
+* versions: Don't fail on Bazel dev builds by @fmeum in https://github.com/bazelbuild/bazel-skylib/pull/463
+* Add error for empty `bzl_library` by @keith in https://github.com/bazelbuild/bazel-skylib/pull/457
+* Add `doc` param to `unittest.make` by @UebelAndre in https://github.com/bazelbuild/bazel-skylib/pull/464
+
+## New Contributors
+* @kotlaja made their first contribution in https://github.com/bazelbuild/bazel-skylib/pull/455
+* @keith made their first contribution in https://github.com/bazelbuild/bazel-skylib/pull/457
+
+**Full Changelog**: https://github.com/bazelbuild/bazel-skylib/compare/1.4.2...1.5.0
+
+
Release 1.4.2
Bugfix release: fixes `build_test` to respect `target_compatible_with` (#448)
diff --git a/MODULE.bazel b/MODULE.bazel
index 0cdaad3..298974a 100644
--- a/MODULE.bazel
+++ b/MODULE.bazel
@@ -1,7 +1,7 @@
module(
name = "bazel_skylib",
# Keep in sync with version.bzl and @bazel_skylib_gazelle_plugin//:MODULE.bazel
- version = "1.4.2",
+ version = "1.5.0",
compatibility_level = 1,
)
diff --git a/gazelle/MODULE.bazel b/gazelle/MODULE.bazel
index a61d801..7afa242 100644
--- a/gazelle/MODULE.bazel
+++ b/gazelle/MODULE.bazel
@@ -1,7 +1,7 @@
module(
name = "bazel_skylib_gazelle_plugin",
# Keep in sync with @bazel_skylib//:MODULE.bazel and @bazel_skylib//:version.bzl
- version = "1.4.2",
+ version = "1.5.0",
compatibility_level = 1,
)
diff --git a/version.bzl b/version.bzl
index 393ef2c..b004ba1 100644
--- a/version.bzl
+++ b/version.bzl
@@ -14,4 +14,4 @@
"""The version of bazel-skylib."""
# Keep in sync with MODULE.bazel and @bazel_skylib_gazelle_plugin//:MODULE.bazel
-version = "1.4.2"
+version = "1.5.0"