80 lines
2.3 KiB
Diff
80 lines
2.3 KiB
Diff
|
From a3be441c61d4c9225a7fa7cefb0cb2eb8928607a Mon Sep 17 00:00:00 2001
|
||
|
From: Richard Hughes <richard@hughsie.com>
|
||
|
Date: Thu, 20 Jun 2019 16:28:08 +0100
|
||
|
Subject: [PATCH 1/6] trivial: post release version bump
|
||
|
|
||
|
---
|
||
|
RELEASE | 22 +++++++++++-----------
|
||
|
meson.build | 2 +-
|
||
|
2 files changed, 12 insertions(+), 12 deletions(-)
|
||
|
|
||
|
diff --git a/RELEASE b/RELEASE
|
||
|
index 7235273..f143cd5 100644
|
||
|
--- a/RELEASE
|
||
|
+++ b/RELEASE
|
||
|
@@ -2,11 +2,11 @@ colord-gtk Release Notes
|
||
|
|
||
|
1. Write NEWS entries for colord in the same format as usual.
|
||
|
|
||
|
-git shortlog COLORD_GTK_0_1_25.. | grep -i -v trivial | grep -v Merge > NEWS.new
|
||
|
+git shortlog COLORD_GTK_0_2_0.. | grep -i -v trivial | grep -v Merge > NEWS.new
|
||
|
|
||
|
-Version 0.1.27
|
||
|
-~~~~~~~~~~~~~~
|
||
|
-Released: 2014-xx-xx
|
||
|
+Version 0.2.1
|
||
|
+~~~~~~~~~~~~~
|
||
|
+Released: 2019-xx-xx
|
||
|
|
||
|
New Features:
|
||
|
Bugfixes:
|
||
|
@@ -14,8 +14,8 @@ Bugfixes:
|
||
|
2. Commit changes to git:
|
||
|
|
||
|
# MAKE SURE THESE ARE CORRECT
|
||
|
-export release_version="0.1.27"
|
||
|
-export release_tag="COLORD_GTK_0_1_27"
|
||
|
+export release_version="0.2.0"
|
||
|
+export release_tag="COLORD_GTK_0_2_0"
|
||
|
|
||
|
git commit -a -m "Release colord-gtk ${release_version}"
|
||
|
git tag -s -f -m "Release colord-gtk ${release_version}" "${release_tag}"
|
||
|
@@ -25,18 +25,18 @@ git push
|
||
|
|
||
|
3. Generate the tarball:
|
||
|
|
||
|
-make dist
|
||
|
+ninja dist
|
||
|
|
||
|
3a. Generate the additon verification metadata
|
||
|
|
||
|
-sha1sum colord-gtk-${release_version}.tar.xz > colord-gtk-${release_version}.tar.xz.sha1
|
||
|
-gpg -b -a colord-gtk-${release_version}.tar.xz
|
||
|
+sha1sum meson-dist/colord-gtk-${release_version}.tar.xz > colord-gtk-${release_version}.tar.xz.sha1
|
||
|
+gpg -b -a meson-dist/colord-gtk-${release_version}.tar.xz
|
||
|
|
||
|
4. Upload tarball:
|
||
|
|
||
|
-scp colord-gtk-${release_version}.tar.* hughsient@annarchy.freedesktop.org:/srv/www.freedesktop.org/www/software/colord/releases/
|
||
|
+scp meson-dist/colord-gtk-${release_version}.tar.* hughsient@annarchy.freedesktop.org:/srv/www.freedesktop.org/www/software/colord/releases/
|
||
|
|
||
|
-5. Do post release version bump in configure.ac
|
||
|
+5. Do post release version bump in meson.build
|
||
|
|
||
|
6. Commit changes:
|
||
|
|
||
|
diff --git a/meson.build b/meson.build
|
||
|
index 8215618..9dc56c5 100644
|
||
|
--- a/meson.build
|
||
|
+++ b/meson.build
|
||
|
@@ -1,5 +1,5 @@
|
||
|
project('colord-gtk', 'c',
|
||
|
- version : '0.2.0',
|
||
|
+ version : '0.2.1',
|
||
|
license : 'LGPL-2.1+',
|
||
|
meson_version : '>=0.46.0',
|
||
|
default_options : ['c_std=c99']
|
||
|
--
|
||
|
2.35.1
|
||
|
|