Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Commit

Permalink
release v2.10.0 (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers committed Dec 6, 2022
1 parent 16b29f4 commit 57aa825
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 6 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Expand Up @@ -6,9 +6,22 @@ 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.10.0] - 2022-12-06

### What's Changed
* draw: add pixel format YUYV422 by @alfredh in https://github.com/baresip/rem/pull/106
* vidframe_draw_hline: add more formats by @alfredh in https://github.com/baresip/rem/pull/107
* vid: add support for YUV422P pixel format by @alfredh in https://github.com/baresip/rem/pull/103
* aubuf: avoid underflow of cur_sz by @cspiel1 in https://github.com/baresip/rem/pull/108
* cmake/pkgconfig: fix prefix variable by @cspiel1 in https://github.com/baresip/rem/pull/109

**Full Changelog**: https://github.com/baresip/rem/compare/v2.9.0...v2.10.0

---

## [v2.9.0] - 2022-11-01

## What's Changed
### What's Changed
* cmake: add pre-release version handling by @sreimers in https://github.com/baresip/rem/pull/95
* README.md: Update build instructions for cmake by @robert-scheck in https://github.com/baresip/rem/pull/96
* aubuf: exclude non compatible CXX functions by @sreimers in https://github.com/baresip/rem/pull/97
Expand All @@ -19,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

**Full Changelog**: https://github.com/baresip/rem/compare/v2.8.0...v2.9.0

---

## [v2.8.0] - 2022-10-01

Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Expand Up @@ -12,13 +12,13 @@
cmake_minimum_required(VERSION 3.10)

project(rem
VERSION 2.9.0
VERSION 2.10.0
LANGUAGES C
HOMEPAGE_URL https://github.com/baresip/rem
DESCRIPTION "Audio and video processing media library"
)

set(PROJECT_SOVERSION 3) # bump if ABI breaks
set(PROJECT_SOVERSION 4) # bump if ABI breaks

# Pre-release identifier, comment out on a release
# Increment for breaking changes (dev2, dev3...)
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -6,7 +6,7 @@

# Main version number
VER_MAJOR := 2
VER_MINOR := 9
VER_MINOR := 10
VER_PATCH := 0

# Development version, comment out on a release
Expand All @@ -15,7 +15,7 @@ VER_PATCH := 0

# Libtool similar ABI versioning
# https://github.com/baresip/re/wiki/ABI-Versioning
ABI_MAJOR := 3
ABI_MAJOR := 4
ABI_AGE := $(VER_MINOR)
ABI_REV := $(VER_PATCH)

Expand All @@ -26,7 +26,7 @@ else
VERSION := $(VER_MAJOR).$(VER_MINOR).$(VER_PATCH)-$(VER_PRE)
endif
OPT_SPEED := 1
LIBRE_MIN := 2.9.0
LIBRE_MIN := 2.10.0

ifndef LIBRE_MK
LIBRE_MK := $(shell [ -f ../re/mk/re.mk ] && \
Expand Down
12 changes: 12 additions & 0 deletions debian/changelog
@@ -1,3 +1,15 @@
librem (2.10.0) unstable; urgency=medium

* version 2.10.0

-- Sebastian Reimers <sebastian.reimers@gmail.com> Tue, 6 Dec 2022 08:00:00 +0200

librem (2.9.0) unstable; urgency=medium

* version 2.9.0

-- Sebastian Reimers <sebastian.reimers@gmail.com> Thu, 1 Nov 2022 08:00:00 +0200

librem (2.8.0) unstable; urgency=medium

* version 2.8.0
Expand Down

0 comments on commit 57aa825

Please sign in to comment.