Skip to content

Commit

Permalink
update version (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterebden authored Apr 29, 2024
1 parent ae3e947 commit 0bb34da
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 0.3.1
-------------
* Remove specialisation for aarch64


Version 0.3.0
-------------
* Add the old legacy rules to help each the migration to the new rules.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.0
0.3.1
6 changes: 1 addition & 5 deletions build_defs/proto.build_defs
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,7 @@ def protoc_binary(name, url:str|dict = '', version:str = '', hashes=None, deps=N
elif CONFIG.HOSTARCH == 'x86':
HOSTARCH = 'x86_32'
elif CONFIG.HOSTARCH == 'arm64':
if CONFIG.HOSTOS == 'darwin':
# There's no arm64 distribution, but we can use the x86 version thanks to rosetta!
HOSTARCH = 'x86_64'
else:
HOSTARCH = 'aarch_64'
HOSTARCH = 'aarch_64'
else:
HOSTARCH = CONFIG.HOSTARCH

Expand Down
2 changes: 1 addition & 1 deletion third_party/proto/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ subinclude("//build_defs:proto")

protoc_binary(
name = "protoc",
version = "3.19.1",
version = "21.7",
visibility = ["PUBLIC"],
)

0 comments on commit 0bb34da

Please sign in to comment.