Skip to content

Commit

Permalink
Tag 1.10.0 (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tatskaari authored Oct 25, 2023
1 parent b2a7a96 commit 0e86470
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 1.10.0
-------------
* Allow go_repo to depend on go_module rules to enable an incremental migration (#166)

Version 1.9.2
-------------
* Fix issue with setting _module on go_binary rules within go_repo
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.9.2
1.10.0
13 changes: 6 additions & 7 deletions tools/BUILD
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
VERSION = "1.4.4"
VERSION = "1.5.0"

hashes = {
"darwin_amd64": "bb36e910341d0d77a90d6468d46db3ae6af6946dd9f3279fe8dec305d3404516",
"darwin_arm64": "0da19be6e67d1e997f0a1a84f2dfc065993b142c5ef7d4a30cacc4c6cb411b73",
"freebsd_amd64": "9f63aa4db858c2818b8d6bc9ab76bd643833185aa4c6be1162fb5090be07852e",
"linux_amd64": "504c4737b48e4c21de546e1f01d21124fc1a73a2b05c69d93503830da00f9c7a",
"linux_arm64": "f319a8803c7b9d08ecbe955fc7e671c3506319145f5d3ddd96fa8671edd91ebb",
"darwin_amd64": "dc0893949401375221065aefeb7f7aa83dcef6d5f67942274bc0f8563bda0566",
"darwin_arm64": "eb3afaca176856eb36770c9da15c9c6aa0e513f96063f7a6d3ac91d127f876a6",
"freebsd_amd64": "21a6a31f214480801055a581c0b345e5a4ef250b055492f5c6c16fbe5c342555",
"linux_amd64": "7deadd1d61efcc8931f907cb1953d9c61d89c2d21d8212691a51199061531e60",
"linux_arm64": "02e8a6d7634af74b72879c1f36680370bc76963379727428d1e55a70cc8e8d44",
}

for a, h in hashes.items():
Expand All @@ -14,7 +14,6 @@ for a, h in hashes.items():
name = "please_go" if native else f"please_go_{a}",
binary = True,
hashes = [h],
labels = None if native else ["manual"], # Needed to avoid picking this up for other architectures for coverage
url = f"https://github.com/please-build/go-rules/releases/download/please-go-v{VERSION}/please_go-{VERSION}-{a}",
visibility = ["PUBLIC"] if native else None,
)

0 comments on commit 0e86470

Please sign in to comment.