diff --git a/jekyll/_config.yml b/jekyll/_config.yml index 183d200b..bd39d2f5 100644 --- a/jekyll/_config.yml +++ b/jekyll/_config.yml @@ -3,8 +3,8 @@ tagline: Linux devices manager for the Logitech Unifying Receiver. owner: pwr owner_url: https://github.com/pwr repository: https://github.com/pwr/Solaar -version: 0.8.9.4 -tar_download: https://github.com/pwr/Solaar/archive/0.8.9.4.tar.gz +version: 0.9.0 +tar_download: https://github.com/pwr/Solaar/archive/0.9.0.tar.gz ga_id: UA-36908718-1 pygments: true diff --git a/packaging/debian/changelog b/packaging/debian/changelog index 0e180898..9d4ddcda 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,5 +1,7 @@ -solaar (0.8.99.12-1) unstable; urgency=low +solaar (0.9.0-1) UNRELEASED; urgency=low + * Release 0.9.0. * Initial Debian release (closes: #715172) - -- Daniel Pavel Sun, 07 Jul 2013 22:13:30 +0200 + -- Daniel Pavel Tue, 09 Jul 2013 14:50:08 +0200 + diff --git a/packaging/upload_launchpad.sh b/packaging/upload_launchpad.sh index 2e3f08ed..e788f92e 100755 --- a/packaging/upload_launchpad.sh +++ b/packaging/upload_launchpad.sh @@ -12,5 +12,9 @@ export DEBSIGN_KEYID=07D8904B Z="$(readlink -f "$(dirname "$0")")" "$Z"/build_deb.sh --rebuild "$@" -/usr/bin/dput --config="$Z/dput.cf" solaar-snapshots-ppa \ - "$Z/../dist/ubuntu"/solaar_*_source.changes +read -p 'Version: ' VERSION +test "$VERSION" +CHANGES_FILE="$Z/../dist/solaar_${VERSION}_source.changes" +test -r "$CHANGES_FILE" + +/usr/bin/dput --config="$Z/dput.cf" solaar-snapshots-ppa "$CHANGES_FILE" diff --git a/packaging/upload_mentors.sh b/packaging/upload_mentors.sh index 4c1abe80..14266313 100755 --- a/packaging/upload_mentors.sh +++ b/packaging/upload_mentors.sh @@ -12,5 +12,9 @@ export DEBSIGN_KEYID=0B34B1A7 Z="$(readlink -f "$(dirname "$0")")" "$Z"/build_deb.sh --release "$@" -/usr/bin/dput --config="$Z/dput.cf" mentors \ - "$Z/../dist/debian"/solaar_*_source.changes +read -p 'Version: ' VERSION +test "$VERSION" +CHANGES_FILE="$Z/../dist/solaar_${VERSION}_source.changes" +test -r "$CHANGES_FILE" + +/usr/bin/dput --config="$Z/dput.cf" mentors "$CHANGES_FILE"