From 1065baaedd30b6fb6c1c694b7e7d1b05e028a557 Mon Sep 17 00:00:00 2001 From: Philipp Wolfer Date: Thu, 2 Mar 2023 14:27:23 +0100 Subject: [PATCH] set version to 0.6.4 --- CMakeLists.txt | 2 +- ChangeLog | 5 +++++ configure.ac | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 75cd397..1f24916 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ PROJECT(libdiscid C) # PATCH is increase for all other releases SET(libdiscid_MAJOR 0) SET(libdiscid_MINOR 6) -SET(libdiscid_PATCH 3) +SET(libdiscid_PATCH 4) SET(libdiscid_VERSION ${libdiscid_MAJOR}.${libdiscid_MINOR}.${libdiscid_PATCH}) diff --git a/ChangeLog b/ChangeLog index 8bbb0ed..96c1732 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,11 @@ libdiscid ChangeLog: -------------------- +libdiscid-0.6.4: + +- LIB-69: Revert "Use discid_feature enum in discid_read_sparse". Fixes + compiler errors with C++. + libdiscid-0.6.3: - LIB-66: fix for Debian kFreeBSD diff --git a/configure.ac b/configure.ac index 9f57a22..30fb1e9 100644 --- a/configure.ac +++ b/configure.ac @@ -8,7 +8,7 @@ dnl Process this file with autoconf to produce a configure script. # PATCH is increase for all other releases define(MAJOR, 0) define(MINOR, 6) -define(PATCH, 3) +define(PATCH, 4) # currently the sole purpose of the project is the library, # so we use the library version also as project version AC_INIT([libdiscid],[MAJOR.MINOR.PATCH])