diff --git a/CHANGELOG.md b/CHANGELOG.md index aafe157..33bbf60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,23 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v2.8.0] - 2022-10-01 + +* cmake: bump min. version 3.10 by @sreimers in https://github.com/baresip/rem/pull/79 +* auframe: auframe\_bytes\_to\_timestamp use uint64\_t by @cspiel1 in https://github.com/baresip/rem/pull/80 +* ci: migrate from make to CMake by @alfredh in https://github.com/baresip/rem/pull/81 +* cmake: install improvements by @sreimers in https://github.com/baresip/rem/pull/83 +* cmake: add static and shared targets by @sreimers in https://github.com/baresip/rem/pull/84 +* cmake: add win32 linklibs by @sreimers in https://github.com/baresip/rem/pull/85 +* debian: use dh-cmake by @sreimers in https://github.com/baresip/rem/pull/86 +* vid/frame: fix possbile overflow multiplication by @sreimers in https://github.com/baresip/rem/pull/87 +* cmake: add pkgconfig (fixes #90) by @robert-scheck in https://github.com/baresip/rem/pull/91 +* cmake: fix shared API soversion (aligned with make) by @robert-scheck in https://github.com/baresip/rem/pull/89 + +**Full Changelog**: https://github.com/baresip/rem/compare/v2.7.0...v2.8.0 + +--- + ## [v2.7.0] - 2022-09-01 * cmake: add FindRE and use re-config.cmake for definitions by @sreimers in https://github.com/baresip/rem/pull/76 diff --git a/CMakeLists.txt b/CMakeLists.txt index 8d2952d..a92deff 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ cmake_minimum_required(VERSION 3.10) project(rem - VERSION 2.7.0 + VERSION 2.8.0 LANGUAGES C HOMEPAGE_URL https://github.com/baresip/rem DESCRIPTION "Audio and video processing media library" diff --git a/Makefile b/Makefile index bbc77eb..4b4c175 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # Main version number VER_MAJOR := 2 -VER_MINOR := 7 +VER_MINOR := 8 VER_PATCH := 0 # Development version, comment out on a release @@ -26,7 +26,7 @@ else VERSION := $(VER_MAJOR).$(VER_MINOR).$(VER_PATCH)-$(VER_PRE) endif OPT_SPEED := 1 -LIBRE_MIN := 2.7.0 +LIBRE_MIN := 2.8.0 ifndef LIBRE_MK LIBRE_MK := $(shell [ -f ../re/mk/re.mk ] && \ diff --git a/debian/changelog b/debian/changelog index 4ce3f15..c269c7b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +librem (2.8.0) unstable; urgency=medium + + * version 2.8.0 + + -- Christian Spielberger Sat, 1 Oct 2022 08:00:00 +0200 + librem (2.7.0) unstable; urgency=medium * version 2.7.0