diff --git a/CMakeLists.txt b/CMakeLists.txt index 3d7dd71..a3eaf1a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,12 +1,12 @@ # require 3.15 for GNUInstallDirs cmake_minimum_required(VERSION 3.15...3.18) -project(QuaZip VERSION 1.2) +project(QuaZip VERSION 1.3) set(CMAKE_CXX_STANDARD 14) set(QUAZIP_LIB_VERSION ${QuaZip_VERSION}) -set(QUAZIP_LIB_SOVERSION 1.0.0) +set(QUAZIP_LIB_SOVERSION 1.3.0) option(BUILD_SHARED_LIBS "" ON) option(QUAZIP_INSTALL "" ON) diff --git a/Doxyfile b/Doxyfile index 21e5771..505c92f 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = QuaZip # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = quazip-1-2 +PROJECT_NUMBER = quazip-1-3 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/NEWS.txt b/NEWS.txt index 0b496fe..882c4d2 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -1,4 +1,7 @@ -QuaZip changes +* 2022-04-16 1.3 + * All JlCompress methods are now public + * Default Qt major version is now detected automatically + * Minor CMake and pkg-config fixes and improvements * 2021-11-13 1.2 * Add CMake option to disable installation (Sebastian Rettenberger)