Skip to content

Commit 7489efe

Browse files
committed
Release 0.21.0
1 parent 6128cdd commit 7489efe

File tree

17 files changed

+21
-20
lines changed

17 files changed

+21
-20
lines changed

.bcr/metadata.template.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"homepage": "https://github.com/abrisco/rules_helm",
2+
"homepage": "https://github.com/periareon/rules_helm",
33
"maintainers": [
44
{
55
"name": "Andre Brisco",
@@ -9,7 +9,8 @@
99
}
1010
],
1111
"repository": [
12-
"github:abrisco/rules_helm"
12+
"github:abrisco/rules_helm",
13+
"github:periareon/rules_helm"
1314
],
1415
"versions": [],
1516
"yanked_versions": {}

.bcr/presubmit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
bcr_test_module:
3-
# TODO(abrisco/rules_helm#38): Have this run in a regression test
3+
# TODO(periareon/rules_helm#38): Have this run in a regression test
44
# directory which is consuming rules_helm and not just testing
55
# within the same repository.
66
module_path: "."

.github/release_notes.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
55
http_archive(
66
name = "rules_helm",
77
integrity = "sha256-{sha256_base64}",
8-
urls = ["https://github.com/abrisco/rules_helm/releases/download/{version}/rules_helm-v{version}.tar.gz"],
8+
urls = ["https://github.com/periareon/rules_helm/releases/download/{version}/rules_helm-v{version}.tar.gz"],
99
)
1010
```
1111

12-
Additional documentation can be found at: https://github.com/abrisco/rules_helm
12+
Additional documentation can be found at: https://github.com/periareon/rules_helm

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818

1919
jobs:
2020
release:
21-
if: ${{ github.repository_owner == 'abrisco' }}
21+
if: ${{ github.repository_owner == 'periareon' }}
2222
permissions:
2323
contents: write
2424
actions: write

MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
"""abrisco/rules_helm"""
1+
"""periareon/rules_helm"""
22

33
module(
44
name = "rules_helm",
5-
version = "0.20.1",
5+
version = "0.21.0",
66
compatibility_level = 1,
77
)
88

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ Bazel rules for [Helm](https://helm.sh/).
44

55
## Documentation
66

7-
https://abrisco.github.io/rules_helm/
7+
https://periareon.github.io/rules_helm/

docs/book.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ src = "src"
66
title = "rules_helm"
77

88
[output.html]
9-
git-repository-url = "https://github.com/abrisco/rules_helm/"
9+
git-repository-url = "https://github.com/periareon/rules_helm/"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/abrisco/rules_helm
1+
module github.com/periareon/rules_helm
22

33
go 1.23.0
44

helm/extensions.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def _helm_impl(module_ctx):
6262

6363
# The URLs for linux-i386 artifacts are actually published under
6464
# a different name. The check below accounts for this.
65-
# https://github.com/abrisco/rules_helm/issues/76
65+
# https://github.com/periareon/rules_helm/issues/76
6666
url_platform = platform
6767
if url_platform == "linux-i386":
6868
url_platform = "linux-386"

helm/private/helm_utils/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ load("@rules_go//go:def.bzl", "go_library")
33
go_library(
44
name = "helm_utils",
55
srcs = ["helm_utils.go"],
6-
importpath = "github.com/abrisco/rules_helm/helm/private/helm_utils",
6+
importpath = "github.com/periareon/rules_helm/helm/private/helm_utils",
77
visibility = ["//helm:__subpackages__"],
88
deps = [
99
"@rules_go//go/runfiles",

0 commit comments

Comments
 (0)