Skip to content

Commit 288731e

Browse files
authored
Update changelog and version for release 1.4.2 (#451)
1 parent 12dd004 commit 288731e

File tree

5 files changed

+20
-8
lines changed

5 files changed

+20
-8
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Release 1.4.2
2+
3+
Bugfix release: fixes `build_test` to respect `target_compatible_with` (#448)
4+
5+
**New Features**
6+
- `bzl_library` allows `.scl` files (new Starlark dialect loadable by Bazel at
7+
HEAD with `--experimental_enable_scl_dialect`)
8+
9+
**Contributors**
10+
Alexandre Rostovtsev, UebelAndre, Vertexwahn, Xavier Bonaventura
11+
12+
113
Release 1.4.1
214

315
Bugfix release: fixes gazelle plugin failure with

MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module(
22
name = "bazel_skylib",
33
# Keep in sync with version.bzl and @bazel_skylib_gazelle_plugin//:MODULE.bazel
4-
version = "1.4.1",
4+
version = "1.4.2",
55
compatibility_level = 1,
66
)
77

@@ -15,7 +15,7 @@ bazel_dep(name = "platforms", version = "0.0.4")
1515
### INTERNAL ONLY - lines after this are not included in the release packaging.
1616

1717
# Build-only / test-only dependencies
18-
bazel_dep(name = "stardoc", version = "0.5.3", dev_dependency = True, repo_name = "io_bazel_stardoc")
18+
bazel_dep(name = "stardoc", version = "0.5.6", dev_dependency = True, repo_name = "io_bazel_stardoc")
1919
bazel_dep(name = "rules_pkg", version = "0.7.0", dev_dependency = True)
2020
bazel_dep(name = "rules_cc", version = "0.0.2", dev_dependency = True)
2121

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ bazel_skylib_gazelle_plugin_setup()
2727
maybe(
2828
http_archive,
2929
name = "io_bazel_stardoc",
30-
sha256 = "3fd8fec4ddec3c670bd810904e2e33170bedfe12f90adf943508184be458c8bb",
30+
sha256 = "dfbc364aaec143df5e6c52faf1f1166775a5b4408243f445f44b661cfdc3134f",
3131
urls = [
32-
"https://mirror.bazel.build/github.com/bazelbuild/stardoc/releases/download/0.5.3/stardoc-0.5.3.tar.gz",
33-
"https://github.com/bazelbuild/stardoc/releases/download/0.5.3/stardoc-0.5.3.tar.gz",
32+
"https://mirror.bazel.build/github.com/bazelbuild/stardoc/releases/download/0.5.6/stardoc-0.5.6.tar.gz",
33+
"https://github.com/bazelbuild/stardoc/releases/download/0.5.6/stardoc-0.5.6.tar.gz",
3434
],
3535
)
3636

gazelle/MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module(
22
name = "bazel_skylib_gazelle_plugin",
33
# Keep in sync with @bazel_skylib//:MODULE.bazel and @bazel_skylib//:version.bzl
4-
version = "1.4.1",
4+
version = "1.4.2",
55
compatibility_level = 1,
66
)
77

88
# Keep in sync with @bazel_skylib//:MODULE.bazel and @bazel_skylib//:version.bzl
9-
bazel_dep(name = "bazel_skylib", version = "1.4.1")
9+
bazel_dep(name = "bazel_skylib", version = "1.4.2")
1010
bazel_dep(name = "gazelle", version = "0.29.0", repo_name = "bazel_gazelle")
1111
bazel_dep(name = "rules_go", version = "0.38.1", repo_name = "io_bazel_rules_go")
1212

version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
"""The version of bazel-skylib."""
1515

1616
# Keep in sync with MODULE.bazel and @bazel_skylib_gazelle_plugin//:MODULE.bazel
17-
version = "1.4.1"
17+
version = "1.4.2"

0 commit comments

Comments
 (0)