Compare commits

..

7 Commits

Author SHA1 Message Date
76a3a2b3f6 [CI SKIP] version and changelog update
Some checks failed
continuous-integration/drone/pr Build is failing
2022-06-01 22:35:07 +00:00
dc2e6446d5 fix(conventi): fix conventi.sh function get_commit_body()
All checks were successful
continuous-integration/drone/push Build is passing
2022-06-02 00:34:03 +02:00
74e622a5e0 [CI SKIP] version and changelog update
All checks were successful
continuous-integration/drone/pr Build is passing
2022-06-01 22:00:23 +00:00
3fe3a2a598 fix(pipeline): fix git push parameters
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #7
PR #7
2022-06-01 23:54:18 +02:00
e992129261 fix(pipeline): push version and changelog after update
Some checks failed
continuous-integration/drone/push Build is failing
Reviewed-on: #5
PR #5
2022-06-01 23:41:44 +02:00
cda7b95292 fix(pipeline): fix image pull in pipeline
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #4
PR #4
2022-06-01 23:36:11 +02:00
cae8167795 chore(release): release the lastest develop
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Reviewed-on: #3
PR #3
2022-06-01 23:31:57 +02:00
3 changed files with 10 additions and 3 deletions

View File

@ -1,5 +1,5 @@
{ {
"version": "0.1.0", "version": "0.1.1",
"sha": "3fe3a2a", "sha": "dc2e644",
"url": "https://git.riba-interactive.de/rick/waitui" "url": "https://git.riba-interactive.de/rick/waitui"
} }

View File

@ -6,6 +6,13 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
---- ----
## [0.1.1](https://git.riba-interactive.de/rick/waitui/compare/3fe3a2a...dc2e644) (2022-06-01)
### Bug fixes 🩹
* **conventi:** fix `conventi.sh` function `get_commit_body()` ([dc2e644](https://git.riba-interactive.de/rick/waitui/commit/dc2e644))
## [0.1.0](https://git.riba-interactive.de/rick/waitui/compare/dafd1ae...3fe3a2a) (2022-06-01) ## [0.1.0](https://git.riba-interactive.de/rick/waitui/compare/dafd1ae...3fe3a2a) (2022-06-01)

View File

@ -170,7 +170,7 @@ get_commit_footer() {
} }
get_commit_body() { get_commit_body() {
pattern=$(get_commit_footer "$1" | head -n 1) pattern=$(get_commit_footer "$1" | head -n 1 | sed -e 's/[]\/$*.^[]/\\&/g')
if [ -n "$pattern" ]; then if [ -n "$pattern" ]; then
echo "$1" | sed -e "/$pattern/,\$d" echo "$1" | sed -e "/$pattern/,\$d"
else else