Add bump since git ref
This commit is contained in:
parent
2c1ccbcbfd
commit
fdd8716d2f
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/sh
|
||||||
|
if [ ! -z $1 ]; then
|
||||||
|
SINCE="since:$1"
|
||||||
|
fi
|
||||||
|
bundle exec fastlane bump $SINCE
|
|
@ -23,7 +23,13 @@ logname = "CHANGELOG.txt"
|
||||||
desc "Bump version"
|
desc "Bump version"
|
||||||
lane :bump do |options|
|
lane :bump do |options|
|
||||||
unless options[:only]
|
unless options[:only]
|
||||||
|
if options[:since]
|
||||||
|
between = [options[:since], "HEAD"]
|
||||||
|
else
|
||||||
|
between = nil
|
||||||
|
end
|
||||||
log = changelog_from_git_commits(
|
log = changelog_from_git_commits(
|
||||||
|
between: between,
|
||||||
pretty: "* %s",
|
pretty: "* %s",
|
||||||
date_format: "short"
|
date_format: "short"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue