Skip to content

Commit

Permalink
Update changelog and version for release 1.4.2 (#451)
Browse files Browse the repository at this point in the history
  • Loading branch information
tetromino committed May 31, 2023
1 parent 12dd004 commit 288731e
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 8 deletions.
12 changes: 12 additions & 0 deletions 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
Expand Down
4 changes: 2 additions & 2 deletions 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.1",
version = "1.4.2",
compatibility_level = 1,
)

Expand All @@ -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)

Expand Down
6 changes: 3 additions & 3 deletions WORKSPACE
Expand Up @@ -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",
],
)

Expand Down
4 changes: 2 additions & 2 deletions 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.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")

Expand Down
2 changes: 1 addition & 1 deletion version.bzl
Expand Up @@ -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"

0 comments on commit 288731e

Please sign in to comment.