ayatana-commits team mailing list archive
-
ayatana-commits team
-
Mailing list archive
-
Message #02207
[Branch ~agateau/plasma-widget-message-indicator/trunk] Rev 134: Getting ready for 0.5.6
------------------------------------------------------------
revno: 134
tags: 0.5.6
committer: Aurelien Gateau <aurelien.gateau@xxxxxxxxxxxxx>
branch nick: plasma-widget-message-indicator
timestamp: Thu 2010-09-02 10:50:52 +0200
message:
Getting ready for 0.5.6
modified:
CMakeLists.txt
NEWS
RELEASE_CHECK_LIST
--
lp:plasma-widget-message-indicator
https://code.launchpad.net/~agateau/plasma-widget-message-indicator/trunk
Your team ayatana-commits is subscribed to branch lp:plasma-widget-message-indicator.
To unsubscribe from this branch go to https://code.launchpad.net/~agateau/plasma-widget-message-indicator/trunk/+edit-subscription
=== modified file 'CMakeLists.txt'
--- CMakeLists.txt 2010-08-27 10:51:24 +0000
+++ CMakeLists.txt 2010-09-02 08:50:52 +0000
@@ -27,7 +27,7 @@
add_subdirectory(tests)
# Packaging
-set(PROJECT_VERSION "0.5.5")
+set(PROJECT_VERSION "0.5.6")
set(ARCHIVE_NAME ${CMAKE_PROJECT_NAME}-${PROJECT_VERSION})
add_custom_target(dist
COMMAND bzr export --root=${ARCHIVE_NAME} ${CMAKE_BINARY_DIR}/${ARCHIVE_NAME}.tar.bz2
=== modified file 'NEWS'
--- NEWS 2010-06-03 12:02:39 +0000
+++ NEWS 2010-09-02 08:50:52 +0000
@@ -1,3 +1,6 @@
+# 0.5.6 - 2010.09.02
+- Nicer icons which integrate better with other Plasma icons.
+
# 0.5.5 - 2010.06.03
## Improvements
- Middle clicking or shift+left clicking on the applet now activates the latest
=== modified file 'RELEASE_CHECK_LIST'
--- RELEASE_CHECK_LIST 2010-06-03 12:02:18 +0000
+++ RELEASE_CHECK_LIST 2010-09-02 08:50:52 +0000
@@ -1,9 +1,34 @@
-- Update NEWS
- bzr log --line -r tag:x.y.z-1..
-- Bump version number in CMakeLists.txt
-- Commit
-- Create tarball
-- Unpack tarball, build and run tests
-- If ok, create "x.y.z" tag
-- Push
-- Upload tarball
+# Check copy is clean and up to date
+bzr st
+bzr pull
+
+# Init vars
+oldv=$(awk '{ print $2; exit }' NEWS)
+newv=x.y.z
+
+# Update NEWS
+(
+echo "# $newv - $(date +%Y.%m.%d)"
+bzr log --line -n0 -r tag:$oldv..
+echo
+cat NEWS
+) > NEWS.new
+mv NEWS.new NEWS
+vi NEWS
+
+# Bump version number in CMakeLists.txt
+
+# Commit
+bzr ci
+
+# Create tarball
+make distcheck
+
+# Test
+
+# Tag
+bzr tag $newv
+bzr push
+
+# Upload tarball
+lp-project-upload plasma-widget-message-indicator $newv plasma-widget-message-indicator-$newv.tar.bz2