summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2023-01-30 09:54:50 +0000
committerRichard Hughes <richard@hughsie.com>2023-01-30 09:54:50 +0000
commit2930df1e0f1bf97d7c8e6633cd8b2031c21d2fd2 (patch)
tree20a85428d32aff01421e28a68690866563c3ebc8
parentbafd4d33dccc37c9fed220935f89f077cfaf2353 (diff)
downloadgusb-2930df1e0f1bf97d7c8e6633cd8b2031c21d2fd2.tar.gz
trivial: post release version bump
-rw-r--r--RELEASE.md6
-rw-r--r--contrib/libgusb.spec.in5
-rw-r--r--meson.build2
3 files changed, 6 insertions, 7 deletions
diff --git a/RELEASE.md b/RELEASE.md
index 531390e..bf0229e 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -1,14 +1,14 @@
GUsb Release Notes
==================
-git log --format="%s" --cherry-pick --right-only 0.4.3... | grep -i -v trivial | grep -v Merge | sort | uniq
+git log --format="%s" --cherry-pick --right-only 0.4.4... | grep -i -v trivial | grep -v Merge | sort | uniq
Add any user visible changes into ../contrib/org.freedesktop.GUsb.metainfo.xml
appstream-util appdata-to-news ../contrib/org.freedesktop.GUsb.metainfo.xml > ../NEWS
Update library version if new ABI or API in `meson.build`, commit, and build tarball:
# MAKE SURE THIS IS CORRECT
- export release_ver="0.4.4"
+ export release_ver="0.4.5"
git commit -a -m "Release version ${release_ver}"
git tag -s -f -m "Release ${release_ver}" "${release_ver}"
@@ -27,7 +27,7 @@ Do post release version bump in `meson.build` and commit changes:
Send an email to devkit-devel@lists.freedesktop.org
=================================================
- GUsb 0.4.3 released!
+ GUsb 0.4.5 released
GUsb is a GObject wrapper for libusb1 that makes it easy to do
asynchronous control, bulk and interrupt transfers with proper
diff --git a/contrib/libgusb.spec.in b/contrib/libgusb.spec.in
index 4d4c42c..4602c73 100644
--- a/contrib/libgusb.spec.in
+++ b/contrib/libgusb.spec.in
@@ -6,7 +6,7 @@ Version: #VERSION#
Release: 0.#BUILD#%{?alphatag}%{?dist}
License: LGPLv2+
URL: https://github.com/hughsie/libgusb
-Source0: http://people.freedesktop.org/~hughsient/releases/%{name}-%{version}.tar.xz
+Source0: https://github.com/hughsie/libgusb/releases/download/%{version}/%{name}-%{version}.tar.xz
BuildRequires: glib2-devel >= 2.38.0
BuildRequires: json-glib-devel
@@ -59,5 +59,4 @@ GLib headers and libraries for gusb.
%{_datadir}/vala/vapi/gusb.vapi
%changelog
-* #LONGDATE# Richard Hughes <richard@hughsie.com> #VERSION#-0.#BUILD##ALPHATAG#
-- Update from git
+%autochangelog
diff --git a/meson.build b/meson.build
index d5558cb..30b8fd0 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('libgusb', 'c',
- version : '0.4.4',
+ version : '0.4.5',
license : 'LGPL-2.1+',
meson_version : '>=0.49.0',
default_options : ['c_std=c99']