Update changelog and version for release 1.4.2 (#451)
This commit is contained in:
parent
12dd004ffa
commit
288731ef9f
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -1,3 +1,15 @@
|
|||
Release 1.4.2
|
||||
|
||||
Bugfix release: fixes `build_test` to respect `target_compatible_with` (#448)
|
||||
|
||||
**New Features**
|
||||
- `bzl_library` allows `.scl` files (new Starlark dialect loadable by Bazel at
|
||||
HEAD with `--experimental_enable_scl_dialect`)
|
||||
|
||||
**Contributors**
|
||||
Alexandre Rostovtsev, UebelAndre, Vertexwahn, Xavier Bonaventura
|
||||
|
||||
|
||||
Release 1.4.1
|
||||
|
||||
Bugfix release: fixes gazelle plugin failure with
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module(
|
||||
name = "bazel_skylib",
|
||||
# Keep in sync with version.bzl and @bazel_skylib_gazelle_plugin//:MODULE.bazel
|
||||
version = "1.4.1",
|
||||
version = "1.4.2",
|
||||
compatibility_level = 1,
|
||||
)
|
||||
|
||||
|
@ -15,7 +15,7 @@ bazel_dep(name = "platforms", version = "0.0.4")
|
|||
### INTERNAL ONLY - lines after this are not included in the release packaging.
|
||||
|
||||
# Build-only / test-only dependencies
|
||||
bazel_dep(name = "stardoc", version = "0.5.3", dev_dependency = True, repo_name = "io_bazel_stardoc")
|
||||
bazel_dep(name = "stardoc", version = "0.5.6", dev_dependency = True, repo_name = "io_bazel_stardoc")
|
||||
bazel_dep(name = "rules_pkg", version = "0.7.0", dev_dependency = True)
|
||||
bazel_dep(name = "rules_cc", version = "0.0.2", dev_dependency = True)
|
||||
|
||||
|
|
|
@ -27,10 +27,10 @@ bazel_skylib_gazelle_plugin_setup()
|
|||
maybe(
|
||||
http_archive,
|
||||
name = "io_bazel_stardoc",
|
||||
sha256 = "3fd8fec4ddec3c670bd810904e2e33170bedfe12f90adf943508184be458c8bb",
|
||||
sha256 = "dfbc364aaec143df5e6c52faf1f1166775a5b4408243f445f44b661cfdc3134f",
|
||||
urls = [
|
||||
"https://mirror.bazel.build/github.com/bazelbuild/stardoc/releases/download/0.5.3/stardoc-0.5.3.tar.gz",
|
||||
"https://github.com/bazelbuild/stardoc/releases/download/0.5.3/stardoc-0.5.3.tar.gz",
|
||||
"https://mirror.bazel.build/github.com/bazelbuild/stardoc/releases/download/0.5.6/stardoc-0.5.6.tar.gz",
|
||||
"https://github.com/bazelbuild/stardoc/releases/download/0.5.6/stardoc-0.5.6.tar.gz",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
|
@ -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.4.1",
|
||||
version = "1.4.2",
|
||||
compatibility_level = 1,
|
||||
)
|
||||
|
||||
# Keep in sync with @bazel_skylib//:MODULE.bazel and @bazel_skylib//:version.bzl
|
||||
bazel_dep(name = "bazel_skylib", version = "1.4.1")
|
||||
bazel_dep(name = "bazel_skylib", version = "1.4.2")
|
||||
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")
|
||||
|
||||
|
|
|
@ -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.1"
|
||||
version = "1.4.2"
|
||||
|
|
Loading…
Reference in New Issue