From b6ee544c58314154256369a515021660090825c8 Mon Sep 17 00:00:00 2001 From: complexlogic Date: Tue, 15 Nov 2022 06:39:27 -0800 Subject: [PATCH] Bumped version to 3.1.1 --- CHANGELOG | 3 +++ CMakeLists.txt | 2 +- Dockerfile | 2 +- README.md | 6 +++--- config/PKGBUILD | 2 +- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 34850c4..33a8831 100755 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +v3.1.1 (2022-11-15) +- Fix ID3v2 version parsing bug + v3.1 (2022-11-4) - Added support for Musepack format - Added support for HE-AAC, xHE-AAC formats diff --git a/CMakeLists.txt b/CMakeLists.txt index 3c3cb4f..cba4105 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.13) project(rsgain - VERSION 3.1 + VERSION 3.1.1 DESCRIPTION "ReplayGain 2.0 loudness normalizer" HOMEPAGE_URL "https://github.com/complexlogic/rsgain" LANGUAGES CXX diff --git a/Dockerfile b/Dockerfile index c2cd767..34f3339 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM debian -ARG VERSION=3.1 \ +ARG VERSION=3.1.1 \ ARCH=amd64 RUN apt-get update && \ diff --git a/README.md b/README.md index a76a7c3..71ab672 100755 --- a/README.md +++ b/README.md @@ -55,8 +55,8 @@ pkg install rsgain An amd64 .deb package is provided on the [release page](https://github.com/complexlogic/rsgain/releases/latest). It is installable on Debian Bullseye and later, Ubuntu 21.04 and later. It can be installed with the following commands: ```bash -wget https://github.com/complexlogic/rsgain/releases/download/v3.1/rsgain_3.1_amd64.deb -sudo apt install ./rsgain_3.1_amd64.deb +wget https://github.com/complexlogic/rsgain/releases/download/v3.1.1/rsgain_3.1.1_amd64.deb +sudo apt install ./rsgain_3.1.1_amd64.deb ``` This package contains a statically linked taglib version 1.12, which is needed to avoid a very critical bug that corrupted Ogg files in 1.11, which is the current version in the Debian/Ubuntu repos. It is strongly recommended for Debian/Ubuntu users to install this package instead of build from source. @@ -76,7 +76,7 @@ There is also a PKGBUILD script based on the latest release source tarball locat A package is available on the [release page](https://github.com/complexlogic/rsgain/releases/latest) that is compatible with Fedora 36 and later: ```bash -sudo dnf install https://github.com/complexlogic/rsgain/releases/download/v3.1/rsgain-3.1-1.x86_64.rpm +sudo dnf install https://github.com/complexlogic/rsgain/releases/download/v3.1.1/rsgain-3.1.1-1.x86_64.rpm ``` #### Others diff --git a/config/PKGBUILD b/config/PKGBUILD index 2fa33fb..5bff60f 100755 --- a/config/PKGBUILD +++ b/config/PKGBUILD @@ -1,5 +1,5 @@ pkgname=rsgain -pkgver=3.1 +pkgver=3.1.1 pkgrel=1 epoch= pkgdesc="ReplayGain 2.0 loudness normalizer"