We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9209828 commit ffcbfb7Copy full SHA for ffcbfb7
3 files changed
VERSION.txt
@@ -1 +1 @@
1
-0.2.2
+0.2.3
charts/keepup-helm-scraper/Chart.yaml
@@ -2,5 +2,5 @@ apiVersion: v2
2
name: keepup-helm-scraper
3
description: A Helm chart for scrape charts release information.
4
type: application
5
-version: 0.3.5
6
-appVersion: 0.2.2
+version: 0.3.6
+appVersion: 0.2.3
src/main.go
@@ -79,7 +79,7 @@ func main() {
79
80
var imagesInstalled []HelmChartInfo
81
for ns, versionedImage := range uniqImagesByNs {
82
- for v, i := range versionedImage {
+ for i, v := range versionedImage {
83
imagesInstalled = append(imagesInstalled, HelmChartInfo{
84
ChartName: i,
85
Version: v,
0 commit comments