diff --git a/History.txt b/History.txt index 3fad3e7..8bcf873 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,8 @@ +Version 0.4.41, 2023-04-04 +-------------- +BitStream_LE: Fix use of uninitialised values +RPM spec: fix build with rhel9 and derivates + Version 0.4.40, 2022-12-21 -------------- + BitStream_Fast: Resize() diff --git a/Project/CMake/CMakeLists.txt b/Project/CMake/CMakeLists.txt index 43c0a51..35cfd10 100644 --- a/Project/CMake/CMakeLists.txt +++ b/Project/CMake/CMakeLists.txt @@ -4,7 +4,7 @@ project(ZenLib) set(ZenLib_MAJOR_VERSION 0) set(ZenLib_MINOR_VERSION 4) -set(ZenLib_PATCH_VERSION 40) +set(ZenLib_PATCH_VERSION 41) set(ZenLib_VERSION ${ZenLib_MAJOR_VERSION}.${ZenLib_MINOR_VERSION}.${ZenLib_PATCH_VERSION}) if(WIN32) diff --git a/Project/GNU/Library/configure.ac b/Project/GNU/Library/configure.ac index 0c853a6..6c4b4ff 100644 --- a/Project/GNU/Library/configure.ac +++ b/Project/GNU/Library/configure.ac @@ -5,7 +5,7 @@ dnl ######################################################################### dnl ------------------------------------------------------------------------- dnl Name and version dnl -AC_INIT([libzen], [0.4.40]) +AC_INIT([libzen], [0.4.41]) dnl ------------------------------------------------------------------------- dnl Test if we are at the good place diff --git a/Project/GNU/PKGBUILD b/Project/GNU/PKGBUILD index 5f5e3f2..1b6b6d9 100644 --- a/Project/GNU/PKGBUILD +++ b/Project/GNU/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: hydro pkgname=libzen -pkgver=0.4.40 +pkgver=0.4.41 pkgrel=1 pkgdesc="shared library for libmediainfo and mediainfo" arch=('i686' 'x86_64') diff --git a/Project/GNU/libzen.dsc b/Project/GNU/libzen.dsc index 70a3256..90530bb 100644 --- a/Project/GNU/libzen.dsc +++ b/Project/GNU/libzen.dsc @@ -2,7 +2,7 @@ Format: 3.0 (quilt) Source: libzen Binary: libzen-dev, libzen0v5, libzen-doc Architecture: any all -Version: 0.4.40-1 +Version: 0.4.41-1 Maintainer: MediaArea.net SARL Homepage: http://mediainfo.sourceforge.net Standards-Version: 3.9.6 @@ -15,11 +15,11 @@ Package-List: libzen0v5 deb libs optional arch=any libzen0v5-dbg deb debug optional arch=any Checksums-Sha1: - 0000000000000000000000000000000000000000 000000 libzen_0.4.40.orig.tar.xz - 0000000000000000000000000000000000000000 000000 libzen_0.4.40-1.debian.tar.xz + 0000000000000000000000000000000000000000 000000 libzen_0.4.41.orig.tar.xz + 0000000000000000000000000000000000000000 000000 libzen_0.4.41-1.debian.tar.xz Checksums-Sha256: - 0000000000000000000000000000000000000000000000000000000000000000 000000 libzen_0.4.40.orig.tar.xz - 0000000000000000000000000000000000000000000000000000000000000000 000000 libzen_0.4.40-1.debian.tar.xz + 0000000000000000000000000000000000000000000000000000000000000000 000000 libzen_0.4.41.orig.tar.xz + 0000000000000000000000000000000000000000000000000000000000000000 000000 libzen_0.4.41-1.debian.tar.xz Files: - 00000000000000000000000000000000 000000 libzen_0.4.40.orig.tar.xz - 00000000000000000000000000000000 000000 libzen_0.4.40-1.debian.tar.xz + 00000000000000000000000000000000 000000 libzen_0.4.41.orig.tar.xz + 00000000000000000000000000000000 000000 libzen_0.4.41-1.debian.tar.xz diff --git a/Project/GNU/libzen.spec b/Project/GNU/libzen.spec index b18e095..00674a6 100644 --- a/Project/GNU/libzen.spec +++ b/Project/GNU/libzen.spec @@ -1,7 +1,7 @@ -%global libzen_version 0.4.40 +%global libzen_version 0.4.41 %global libzen_version_major 0 %global libzen_version_minor 4 -%global libzen_version_release 40 +%global libzen_version_release 41 %if 0%{?fedora} || 0%{?rhel} %global package_with_0_ending 0 @@ -219,7 +219,7 @@ done %endif %changelog -* Wed Dec 21 2022 MediaArea.net SARL - 0.4.40-0 +* Wed Dec 21 2022 MediaArea.net SARL - 0.4.41-0 - See History.txt for more info and real dates - Previous packages made by Toni Graffy - Fedora style made by Vasiliy N. Glazov diff --git a/Project/Solaris/mkpkg b/Project/Solaris/mkpkg index fd57475..23c2a18 100755 --- a/Project/Solaris/mkpkg +++ b/Project/Solaris/mkpkg @@ -9,7 +9,7 @@ release=`uname -r` #Creation of known directories and filenames name="libzen0" -version="0.4.40" +version="0.4.41" Home=`pwd` install_prefix=${Home}/mk_package packagecreation_prefix=${Home}/create_package diff --git a/Project/version.txt b/Project/version.txt index 12fd0b4..4fc37cd 100644 --- a/Project/version.txt +++ b/Project/version.txt @@ -1 +1 @@ -0.4.40 +0.4.41 diff --git a/debian/changelog b/debian/changelog index d96fccc..dc3829c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ -libzen (0.4.40-1) experimental; urgency=medium +libzen (0.4.41-1) experimental; urgency=medium - * Upstream version 0.4.40 + * Upstream version 0.4.41 For details, see https://github.com/MediaArea/ZenLib/blob/master/History.txt -- MediaArea Wed, 21 Dec 2022 10:30:00 +0100