Prepare release 1.9.0 (#603)
* Prepare release 1.9.0
* typo
* typo
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d17673c..2541ada 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,15 @@
+# Release 1.9.0
+
+**What's Changed**
+* Optimize `copy_file` and set `allow_symlink` by default to `True` if `is_executable` is `False` (#565)
+* Give `rules/private:is_windows` an empty `applicable_license` (#600)
+* Bump `rules_go` dependency for compatibility with Bazel 9 (#601)
+
+**Contributors**:
+@fdinoff, @fmeum, @fweikert, @susinmotion
+
+**Full Changelog**: https://github.com/bazelbuild/bazel-skylib/compare/1.8.2...1.9.0
+
# Release 1.8.2
**New Features**
diff --git a/MODULE.bazel b/MODULE.bazel
index 0b654a2..e603237 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.8.2",
+ version = "1.9.0",
compatibility_level = 1,
)
diff --git a/gazelle/MODULE.bazel b/gazelle/MODULE.bazel
index 75a5982..5057566 100644
--- a/gazelle/MODULE.bazel
+++ b/gazelle/MODULE.bazel
@@ -1,12 +1,12 @@
module(
name = "bazel_skylib_gazelle_plugin",
# Keep in sync with @bazel_skylib//:MODULE.bazel and @bazel_skylib//:version.bzl
- version = "1.8.2",
+ version = "1.9.0",
compatibility_level = 1,
)
# Keep in sync with @bazel_skylib//:MODULE.bazel and @bazel_skylib//:version.bzl
-bazel_dep(name = "bazel_skylib", version = "1.8.2")
+bazel_dep(name = "bazel_skylib", version = "1.9.0")
bazel_dep(name = "rules_license", version = "0.0.7")
bazel_dep(name = "gazelle", version = "0.41.0", repo_name = "bazel_gazelle")
bazel_dep(name = "rules_go", version = "0.59.0", repo_name = "io_bazel_rules_go")
diff --git a/version.bzl b/version.bzl
index 01dba65..22c5912 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.8.2"
+version = "1.9.0"