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

Commit

Permalink
release v2.4.0 (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers authored Jun 1, 2022
1 parent 01143a8 commit 1540805
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 69 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# librem Changelog

All notable changes to librem will be documented in this file.

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).

## [Unreleased]

---

## [v2.4.0] - 2022-06-01

### What's Changed
* aubuf overruns on startup by @cspiel1 in https://github.com/baresip/rem/pull/44
* h265: move from rem to re by @alfredh in https://github.com/baresip/rem/pull/45
* aubuf: do not drop frames if max size was not set by @cspiel1 in https://github.com/baresip/rem/pull/47
* h264: move from rem to re by @alfredh in https://github.com/baresip/rem/pull/46
* vidmix win32 fixes by @sreimers in https://github.com/baresip/rem/pull/49
* aumix: use new libre thread api by @sreimers in https://github.com/baresip/rem/pull/48
* aubuf/ajb: fix possible null pointer deref by @sreimers in https://github.com/baresip/rem/pull/50
* Fade in on underrun and reset ajb by @cspiel1 in https://github.com/baresip/rem/pull/51
* aubuf: add null pointer checks by @cspiel1 in https://github.com/baresip/rem/pull/52
* auconv: add auconv_to_float() by @alfredh in https://github.com/baresip/rem/pull/53
* audio: add optional decoding buffer by @cspiel1 in https://github.com/baresip/rem/pull/54

**Full Changelog**: https://github.com/baresip/rem/compare/v2.3.0...v2.4.0

---
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@

cmake_minimum_required(VERSION 3.7)

project(rem VERSION 2.3.0 LANGUAGES C)
project(rem VERSION 2.4.0 LANGUAGES C)

set(PROJECT_SOVERSION 3) # bump if ABI breaks

##############################################################################
#
Expand Down Expand Up @@ -92,3 +94,4 @@ add_library(${PROJECT_NAME}

target_link_libraries(${PROJECT_NAME} re -lpthread -lm)
set_target_properties(${PROJECT_NAME} PROPERTIES POSITION_INDEPENDENT_CODE ON)
set_target_properties(${PROJECT_NAME} PROPERTIES SOVERSION ${PROJECT_SOVERSION})
12 changes: 5 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Main version number
VER_MAJOR := 2
VER_MINOR := 3
VER_MINOR := 4
VER_PATCH := 0

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

# Libtool similar ABI versioning
# https://github.com/baresip/re/wiki/ABI-Versioning
ABI_CUR := 2
ABI_REV := 0
ABI_AGE := 0

ABI_MAJOR := $(shell expr $(ABI_CUR) - $(ABI_AGE))
ABI_MAJOR := 3
ABI_AGE := $(VER_MINOR)
ABI_REV := $(VER_PATCH)

PROJECT := rem
ifeq ($(VER_PRE),)
Expand All @@ -28,7 +26,7 @@ else
VERSION := $(VER_MAJOR).$(VER_MINOR).$(VER_PATCH)-$(VER_PRE)
endif
OPT_SPEED := 1
LIBRE_MIN := 2.1.1
LIBRE_MIN := 2.4.0

ifndef LIBRE_MK
LIBRE_MK := $(shell [ -f ../re/mk/re.mk ] && \
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
librem (2.4.0) unstable; urgency=medium

* version 2.4.0

-- Sebastian Reimers <[email protected]> Wed, 1 Jun 2022 10:00:00 +0200

librem (2.0.1) unstable; urgency=medium

* version 2.0.1
Expand Down
61 changes: 0 additions & 61 deletions rpm/rem.spec

This file was deleted.

0 comments on commit 1540805

Please sign in to comment.