Skip to content

Commit e7ad733

Browse files
1.0.15
1 parent 01ff6ce commit e7ad733

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(
22
name = "sign-here",
3-
version = "1.0.14",
3+
version = "1.0.15",
44
)
55

66
bazel_dep(name = "apple_support", version = "2.2.0", repo_name = "build_bazel_apple_support")

MODULE.bazel.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -212,10 +212,10 @@ OPTIONS:
212212

213213
### Download pre-built binary
214214

215-
Release tags follow `v*` (for example `v1.0.14`). GitHub Actions publishes a macOS arm64 binary for each tag.
215+
Release tags follow `v*` (for example `v1.0.15`). GitHub Actions publishes a macOS arm64 binary for each tag.
216216

217217
```terminal
218-
curl -fL "https://github.com/Tinder/sign-here/releases/download/v1.0.14/sign-here-v1.0.14-darwin-arm64" -o sign-here
218+
curl -fL "https://github.com/Tinder/sign-here/releases/download/v1.0.15/sign-here-v1.0.15-darwin-arm64" -o sign-here
219219
chmod +x sign-here
220220
./sign-here
221221
```
@@ -225,7 +225,7 @@ chmod +x sign-here
225225
Add to your `MODULE.bazel`:
226226

227227
```starlark
228-
bazel_dep(name = "sign-here", version = "1.0.14")
228+
bazel_dep(name = "sign-here", version = "1.0.15")
229229
```
230230

231231
The module is listed in the [Bazel Central Registry](https://registry.bazel.build/modules/sign-here). Then run:
@@ -242,7 +242,7 @@ If you still use a `WORKSPACE` file, pin the tagged release (Git tags use `v*`):
242242
```starlark
243243
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
244244

245-
_TAG = "v1.0.14"
245+
_TAG = "v1.0.15"
246246
http_archive(
247247
name = "com_github_tinder_sign_here",
248248
url = "https://github.com/Tinder/sign-here/archive/refs/tags/%s.tar.gz" % _TAG,

0 commit comments

Comments
 (0)