Update changelog and version for release 1.4.1 (#434)
This commit is contained in:
parent
cc477631c9
commit
141432789c
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,3 +1,13 @@
|
||||||
|
Release 1.4.1
|
||||||
|
|
||||||
|
Bugfix release: fixes gazelle plugin failure with
|
||||||
|
`--incompatible_disallow_empty_glob` (#431) and (for released versions) with
|
||||||
|
`--incompatible_disable_starlark_host_transitions` (#433).
|
||||||
|
|
||||||
|
**Contributors**
|
||||||
|
Alexandre Rostovtsev, Chuck Grindel
|
||||||
|
|
||||||
|
|
||||||
Release 1.4.0
|
Release 1.4.0
|
||||||
|
|
||||||
**New Features**
|
**New Features**
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
module(
|
module(
|
||||||
name = "bazel_skylib",
|
name = "bazel_skylib",
|
||||||
# Keep in sync with version.bzl and @bazel_skylib_gazelle_plugin//:MODULE.bazel
|
# Keep in sync with version.bzl and @bazel_skylib_gazelle_plugin//:MODULE.bazel
|
||||||
version = "1.4.0",
|
version = "1.4.1",
|
||||||
compatibility_level = 1,
|
compatibility_level = 1,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
module(
|
module(
|
||||||
name = "bazel_skylib_gazelle_plugin",
|
name = "bazel_skylib_gazelle_plugin",
|
||||||
# Keep in sync with @bazel_skylib//:MODULE.bazel and @bazel_skylib//:version.bzl
|
# Keep in sync with @bazel_skylib//:MODULE.bazel and @bazel_skylib//:version.bzl
|
||||||
version = "1.4.0",
|
version = "1.4.1",
|
||||||
compatibility_level = 1,
|
compatibility_level = 1,
|
||||||
)
|
)
|
||||||
|
|
||||||
# Keep in sync with @bazel_skylib//:MODULE.bazel and @bazel_skylib//:version.bzl
|
# Keep in sync with @bazel_skylib//:MODULE.bazel and @bazel_skylib//:version.bzl
|
||||||
bazel_dep(name = "bazel_skylib", version = "1.4.0")
|
bazel_dep(name = "bazel_skylib", version = "1.4.1")
|
||||||
bazel_dep(name = "gazelle", version = "0.29.0", repo_name = "bazel_gazelle")
|
bazel_dep(name = "gazelle", version = "0.29.0", repo_name = "bazel_gazelle")
|
||||||
bazel_dep(name = "rules_go", version = "0.38.1", repo_name = "io_bazel_rules_go")
|
bazel_dep(name = "rules_go", version = "0.38.1", repo_name = "io_bazel_rules_go")
|
||||||
|
|
||||||
|
|
|
@ -14,4 +14,4 @@
|
||||||
"""The version of bazel-skylib."""
|
"""The version of bazel-skylib."""
|
||||||
|
|
||||||
# Keep in sync with MODULE.bazel and @bazel_skylib_gazelle_plugin//:MODULE.bazel
|
# Keep in sync with MODULE.bazel and @bazel_skylib_gazelle_plugin//:MODULE.bazel
|
||||||
version = "1.4.0"
|
version = "1.4.1"
|
||||||
|
|
Loading…
Reference in New Issue