From a9d58de96cb4c268ceed6fa873fa4cbc701dc7b3 Mon Sep 17 00:00:00 2001 From: "Alfred E. Heggestad" Date: Sun, 1 May 2022 09:02:43 +0200 Subject: [PATCH] release 2.3.0 (#338) --- CMakeLists.txt | 2 +- Makefile | 6 ++--- debian/changelog | 6 +++++ rpm/re.spec | 60 ------------------------------------------------ 4 files changed, 10 insertions(+), 64 deletions(-) delete mode 100644 rpm/re.spec diff --git a/CMakeLists.txt b/CMakeLists.txt index cda5261e6..5b88d4a06 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ cmake_minimum_required(VERSION 3.7) -project(re VERSION 2.2.2 LANGUAGES C) +project(re VERSION 2.3.0 LANGUAGES C) # Pre-release identifier, comment out on a release # Increment for breaking changes (dev2, dev3...) diff --git a/Makefile b/Makefile index 403c35568..33f8f2126 100644 --- a/Makefile +++ b/Makefile @@ -6,15 +6,15 @@ # Main version number VER_MAJOR := 2 -VER_MINOR := 2 -VER_PATCH := 2 +VER_MINOR := 3 +VER_PATCH := 0 # Development version, comment out on a release # Increment for breaking changes (dev2, dev3...) # VER_PRE := dev # bump Major if ABI breaks -ABI_MAJOR := 4 +ABI_MAJOR := 5 ABI_AGE := $(VER_MINOR) ABI_REV := $(VER_PATCH) diff --git a/debian/changelog b/debian/changelog index e0a541fa9..a41df6fe8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +libre (2.3.0) unstable; urgency=medium + + * version 2.3.0 + + -- Sebastian Reimers Sun, 1 May 2022 08:00:00 +0200 + libre (2.2.2) unstable; urgency=medium * version 2.2.2 diff --git a/rpm/re.spec b/rpm/re.spec deleted file mode 100644 index 99253801f..000000000 --- a/rpm/re.spec +++ /dev/null @@ -1,60 +0,0 @@ -%define name re -%define ver 2.2.2 -%define rel 1 - -Summary: Generic library for real-time communications with async IO support -Name: %name -Version: %ver -Release: %rel -License: BSD -Group: Applications/Devel -Source0: file://%{name}-%{version}.tar.gz -URL: http://www.creytiv.com/ -Vendor: Creytiv -Packager: Alfred E. Heggestad -BuildRoot: /var/tmp/%{name}-build-root - -%description -Generic library for real-time communications with async IO support - -%package devel -Summary: libre development files -Group: Development/Libraries -Requires: %{name} = %{version} - -%description devel -libre development files. - -%prep -%setup - -%build -make RELEASE=1 - -%install -rm -rf $RPM_BUILD_ROOT -make DESTDIR=$RPM_BUILD_ROOT install \ -%ifarch x86_64 - LIBDIR=/usr/lib64 -%endif - -%clean -rm -rf $RPM_BUILD_ROOT - -%post -p /sbin/ldconfig -%postun -p /sbin/ldconfig - -%files -%defattr(644,root,root,755) -%attr(755,root,root) %{_libdir}/libre*.so* - -%files devel -%defattr(644,root,root,755) -%{_includedir}/re/*.h -/usr/share/re/re.mk -%{_libdir}/libre*.a -%{_libdir}/pkgconfig/libre.pc - -%changelog -* Fri Nov 5 2010 Alfred E. Heggestad - -- Initial build.