aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraiuto <aiuto@google.com>2023-10-17 15:49:51 -0400
committerGitHub <noreply@github.com>2023-10-17 15:49:51 -0400
commitdbdf8343cb70ee13799e07ca03a0276754bbacfc (patch)
treebfff35e60666ea123820a597106144240e1e9c62
parent8ff1c11d9696c1d8b76710b967d74a64a06a84a2 (diff)
downloadbazelbuild-platforms-dbdf8343cb70ee13799e07ca03a0276754bbacfc.tar.gz
Update versions to 0.0.8, tweak release script. (#79)upstream/0.0.8
* add bzlmod stuff to dist * get ready for version 0.0.8 * fix typo in license dep
-rw-r--r--MODULE.bazel2
-rwxr-xr-xdistro/makerel.sh2
-rw-r--r--version.bzl2
3 files changed, 3 insertions, 3 deletions
diff --git a/MODULE.bazel b/MODULE.bazel
index 29fe10b..617a84a 100644
--- a/MODULE.bazel
+++ b/MODULE.bazel
@@ -1,6 +1,6 @@
module(
name = "platforms",
- version = "0.0.7", # keep in sync with version.bzl
+ version = "0.0.8", # keep in sync with version.bzl
compatibility_level = 1,
)
diff --git a/distro/makerel.sh b/distro/makerel.sh
index 7f77f33..20c2f0b 100755
--- a/distro/makerel.sh
+++ b/distro/makerel.sh
@@ -19,7 +19,7 @@ fi
dist_file="/tmp/platforms-${version}.tar.gz"
-tar czf "$dist_file" BUILD LICENSE WORKSPACE version.bzl cpu os
+tar czf "$dist_file" BUILD LICENSE MODULE.bazel WORKSPACE WORKSPACE.bzlmod version.bzl cpu os
sha256=$(shasum -a256 "$dist_file" | cut -d' ' -f1)
path="github.com/bazelbuild/platforms/releases/download/$version/platforms-$version.tar.gz"
diff --git a/version.bzl b/version.bzl
index 94442ff..2068e00 100644
--- a/version.bzl
+++ b/version.bzl
@@ -13,4 +13,4 @@
# limitations under the License.
"""The version of bazelbuild/platforms."""
-version = "0.0.7"
+version = "0.0.8"