File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ python-ovh (0.4.4) trusty; urgency=medium
16
16
* Add debian folder
17
17
* fix: remove Python SNI warnings, OVH API does not need SNI (#35)
18
18
* fix: coveralls version
19
- * [auto] bump version to v0.4.6
20
19
* fix: (regression) body boolean must be sent as boolean (#34)
21
20
22
21
-- Arnaud Morin <arnaud.morin@corp.ovh.com> Mon, 03 Oct 2016 14:34:21 +0200
Original file line number Diff line number Diff line change 31
31
exit 1
32
32
fi
33
33
34
- # Upgrading debian/changelog
35
- dch --noquery --distribution trusty --newversion ${CURRENT_VERSION} " New upstream release v${CURRENT_VERSION} "
36
- while IFS= read -r line ; do
37
- dch -a $line
38
- done <<< $( git log --format=' format:%s' --no-merges v${CURRENT_VERSION} ..)
39
-
40
34
sed -i " 4i## ${VERSION} ($( date --iso) )\n${CHANGES} \n" CHANGELOG.md
41
35
vim CHANGELOG.md
42
36
37
+ # Upgrading debian/changelog
38
+ dch --noquery --distribution trusty --newversion ${VERSION} " New upstream release v${VERSION} "
39
+ awk " /## ${VERSION} /{f=1;next}/##/{f=0} f" CHANGELOG.md | sed ' s/^\s*-\s*//' | while IFS= read -r line ; do
40
+ dch --noquery --distribution trusty -a " $line "
41
+ done
42
+
43
43
# Commit and tag
44
44
git commit -sam " [auto] bump version to v${VERSION} "
45
45
git tag v${VERSION}
You can’t perform that action at this time.
0 commit comments