Skip to content

Commit

Permalink
Update versions to 0.0.8, tweak release script. (#79)
Browse files Browse the repository at this point in the history
* add bzlmod stuff to dist

* get ready for version 0.0.8

* fix typo in license dep
  • Loading branch information
aiuto authored Oct 17, 2023
1 parent 8ff1c11 commit dbdf834
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -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,
)

Expand Down
2 changes: 1 addition & 1 deletion distro/makerel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion version.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# limitations under the License.
"""The version of bazelbuild/platforms."""

version = "0.0.7"
version = "0.0.8"

0 comments on commit dbdf834

Please sign in to comment.