Skip to content

Commit 13f3b9c

Browse files
committed
bump release
1 parent a9b9fc1 commit 13f3b9c

File tree

3 files changed

+89
-9
lines changed

3 files changed

+89
-9
lines changed

.goreleaser.yml

+60-8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
version: 2
2+
13
project_name: popeye
24

35
before:
@@ -7,17 +9,20 @@ before:
79
release:
810
prerelease: false
911

12+
env:
13+
- CGO_ENABLED=0
14+
1015
builds:
11-
- env:
12-
- CGO_ENABLED=0
16+
- id: linux
1317
goos:
1418
- linux
15-
- darwin
16-
- windows
19+
- freebsd
1720
goarch:
1821
- amd64
19-
- arm
2022
- arm64
23+
- arm
24+
- ppc64le
25+
- s390x
2126
goarm:
2227
- 7
2328
flags:
@@ -27,6 +32,32 @@ builds:
2732
- -s -w -X github.com/derailed/popeye/cmd.commit={{.Commit}}
2833
- -s -w -X github.com/derailed/popeye/cmd.date={{.Date}}
2934

35+
- id: osx
36+
goos:
37+
- darwin
38+
goarch:
39+
- amd64
40+
- arm64
41+
flags:
42+
- -trimpath
43+
ldflags:
44+
- -s -w -X github.com/derailed/popeye/cmd.version={{.Version}}
45+
- -s -w -X github.com/derailed/popeye/cmd.commit={{.Commit}}
46+
- -s -w -X github.com/derailed/popeye/cmd.date={{.Date}}
47+
48+
- id: windows
49+
goos:
50+
- windows
51+
goarch:
52+
- amd64
53+
- arm64
54+
flags:
55+
- -trimpath
56+
ldflags:
57+
- -s -w -X github.com/derailed/popeye/cmd.version={{.Version}}
58+
- -s -w -X github.com/derailed/popeye/cmd.commit={{.Commit}}
59+
- -s -w -X github.com/derailed/popeye/cmd.date={{.Date}}
60+
3061
archives:
3162
- name_template: >-
3263
{{ .ProjectName }}_
@@ -37,7 +68,7 @@ archives:
3768
{{- if .Arm }}v{{ .Arm }}{{ end }}
3869
3970
checksum:
40-
name_template: "checksums.txt"
71+
name_template: "checksums.sha256"
4172

4273
snapshot:
4374
name_template: "{{ .Tag }}-next"
@@ -57,8 +88,29 @@ brews:
5788
commit_author:
5889
name: derailed
5990
60-
folder: Formula
91+
directory: Formula
6192
homepage: https://imhotep.io/popeye
62-
description: A Kubernetes Cluster sanitizer and linter.
93+
description: A Kubernetes Cluster sanitizer and linter!
6394
test: |
6495
system "popeye version"
96+
97+
nfpms:
98+
- file_name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}'
99+
maintainer: Fernand Galiana
100+
homepage: https://popeyecli.io
101+
description: A Kubernetes Cluster sanitizer and linter!
102+
license: "Apache-2.0"
103+
formats:
104+
- deb
105+
- rpm
106+
- apk
107+
bindir: /usr/bin
108+
section: utils
109+
contents:
110+
- src: ./LICENSE
111+
dst: /usr/share/doc/nfpm/copyright
112+
file_info:
113+
mode: 0644
114+
115+
sboms:
116+
- artifacts: archive

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
NAME := popeye
22
PACKAGE := github.com/derailed/$(NAME)
3-
VERSION := v0.21.3
3+
VERSION := v0.21.5
44
GIT := $(shell git rev-parse --short HEAD)
55
DATE := $(shell date +%FT%T%Z)
66
IMG_NAME := derailed/popeye

change_logs/release_v0.21.5.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<img src="https://raw.githubusercontent.com/derailed/popeye/master/assets/popeye_logo.png" align="right" width="200" height="auto"/>
2+
3+
# Release v0.21.5
4+
5+
## Notes
6+
7+
Thank you to all that contributed with flushing out issues and enhancements for Popeye! I'll try to mark some of these issues as fixed. But if you don't mind grab the latest rev and see if we're happier with some of the fixes! If you've filed an issue please help me verify and close. Your support, kindness and awesome suggestions to make Popeye better is as ever very much noticed and appreciated!
8+
9+
This project offers a GitHub Sponsor button (over here 👆). As you well know this is not pimped out by big corps with deep pockets. If you feel `Popeye` is saving you cycles diagnosing potential cluster issues please consider sponsoring this project!! It does go a long way in keeping our servers lights on and beers in our fridge.
10+
11+
Also if you dig this tool, please make some noise on social! [@kitesurfer](https://twitter.com/kitesurfer)
12+
13+
---
14+
15+
## Maintenance Release
16+
17+
---
18+
19+
## Resolved Issues
20+
21+
* [#316](https://github.com/derailed/popeye/issues/316) Path of the results file changed from v0.11 to v0.20
22+
* [#314](https://github.com/derailed/popeye/issues/314) Filter by namespace doesn't seem to be working
23+
* [#311](https://github.com/derailed/popeye/issues/311) False positive on network policies.. Sometimes
24+
* [#310](https://github.com/derailed/popeye/issues/310) Add support for ClusterRule aggregationRule
25+
26+
---
27+
28+
<img src="https://raw.githubusercontent.com/derailed/popeye/master/assets/imhotep_logo.png" width="32" height="auto"/>&nbsp; © 2024 Imhotep Software LLC. All materials licensed under [Apache v2.0](http://www.apache.org/licenses/LICENSE-2.0)

0 commit comments

Comments
 (0)