Skip to content

Commit 1a90763

Browse files
committed
release 0.16.3
1 parent 303c3d7 commit 1a90763

File tree

4 files changed

+54
-2
lines changed

4 files changed

+54
-2
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
# Change Log
22

3+
## 0.16.3
4+
5+
**Release date:** 2023-04-10
6+
7+
![AppVersion: 1.21.0](https://img.shields.io/static/v1?label=AppVersion&message=1.21.0&color=success&logo=)
8+
![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm)
9+
10+
11+
* release 0.16.3
12+
* make sure tmp folder exists (fixes #7)
13+
* update digest extractor
14+
* update changelog
15+
* Merge branch 'main' of github.com:clowder-framework/clowder-helm
16+
17+
### Default value changes
18+
19+
```diff
20+
diff --git a/values.yaml b/values.yaml
21+
index fb0323f..4b084c8 100644
22+
--- a/values.yaml
23+
+++ b/values.yaml
24+
@@ -126,7 +126,7 @@ smtp:
25+
## env : additional environment variables to pass to extractor.
26+
extractors:
27+
file-digest:
28+
- image: clowder/extractors-digest:2.2.3
29+
+ image: clowder/extractors-digest:2.2.4
30+
# enabled: true
31+
# replicaCount: 1
32+
# pullPolicy: Always
33+
```
34+
335
## 0.16.2
436

537
**Release date:** 2023-02-21
@@ -9,6 +41,7 @@
941

1042

1143
* update extractor version
44+
* Minor typo correction
1245

1346
### Default value changes
1447

Chart.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ description: >
1313
# This is the chart version. This version number should be incremented each time you make changes
1414
# to the chart and its templates, including the app version.
1515
# Versions are expected to follow Semantic Versioning (https://semver.org/)
16-
version: 0.16.2
16+
version: 0.16.3
1717

1818
# This is the version number of the application being deployed. This version number should be
1919
# incremented each time you make changes to the application. Versions are not expected to
@@ -55,4 +55,8 @@ annotations:
5555
- name: Helm Chart
5656
url: https://github.com/clowder-framework/clowder-helm
5757
artifacthub.io/changes: |
58-
- update extractor versions
58+
- "release 0.16.3"
59+
- "make sure tmp folder exists (fixes #7)"
60+
- "update digest extractor"
61+
- "update changelog"
62+
- "Merge branch 'main' of github.com:clowder-framework/clowder-helm"

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,4 +167,10 @@ extraConfig:
167167
168168
## ChangeLog
169169
170+
This is auto generated using:
171+
172+
```
173+
docker run -it --rm -v $(pwd):/data mogensen/helm-changelog:latest
174+
```
175+
170176
See [CHANGELOG.md](CHANGELOG.md) for the changes.

changelog.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
3+
docker run -it --rm -v $(pwd):/data mogensen/helm-changelog:latest
4+
5+
version="$(awk '/^version:/ { print $2} ' Chart.yaml)"
6+
changelog="$(sed -e "1,/^## ${version}/d" -e "/^###/,\$d" -e '/^$/d' -e 's/^* /- /' -e 's/^/ /' CHANGELOG.md | grep '^ - ' | sed -e 's/\ *$//g' | sed 's/ - \(.*\)/ - "\1"/g')"
7+
sed -i~ -e '/^ artifacthub.io\/changes: |/,$d' Chart.yaml
8+
echo " artifacthub.io/changes: |" >> Chart.yaml
9+
echo "${changelog}" >> Chart.yaml

0 commit comments

Comments
 (0)