diff options
author | Donovan Baarda <abo@minkirri.apana.org.au> | 2019-10-12 14:19:28 +1100 |
---|---|---|
committer | Donovan Baarda <abo@minkirri.apana.org.au> | 2019-10-12 14:19:28 +1100 |
commit | 8c20035d52b41b4ff1089c3e7428002f0856bf64 (patch) | |
tree | 59dd53aad87a40db63532efc08f75f95c2e90ad4 | |
parent | 1ad3c7c600dc7231b0d3feb9bfcd83fa0ebe1051 (diff) | |
download | librsync-8c20035d52b41b4ff1089c3e7428002f0856bf64.tar.gz |
Prepare release v2.2.0.
Update version to 2.2.0 in CMakeLists.txt, NEWS.md, and librsync.spec. Add
NEWS.md entries for version bump and MSVS 2019 fixes. Add changelog entry to
librsync.spec.
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rw-r--r-- | NEWS.md | 11 | ||||
-rw-r--r-- | librsync.spec | 4 |
3 files changed, 14 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 86284f5..f874847 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,8 +23,8 @@ INCLUDE(CMakeDependentOption) include(GNUInstallDirs) set(LIBRSYNC_MAJOR_VERSION 2) -set(LIBRSYNC_MINOR_VERSION 1) -set(LIBRSYNC_PATCH_VERSION 1) +set(LIBRSYNC_MINOR_VERSION 2) +set(LIBRSYNC_PATCH_VERSION 0) set(LIBRSYNC_VERSION ${LIBRSYNC_MAJOR_VERSION}.${LIBRSYNC_MINOR_VERSION}.${LIBRSYNC_PATCH_VERSION}) @@ -1,8 +1,11 @@ # librsync NEWS -## librsync 2.1.1 +## librsync 2.2.0 -NOT RELEASED YET +Released 2019-10-12 + + * Bump minor version from 2.1.0 to 2.2.0 to reflect additional RabinKarp + rollsum support. * Fix MSVC builds by adding missing LIBRSYNC_EXPORT to variables in librsync.h, add -DLIBRSYNC_STATIC_DEFINE to the sumset_test target, @@ -32,6 +35,10 @@ NOT RELEASED YET build librsync as a static library. (dbaarda https://github.com/librsync/librsync/pull/169) + * Fix compile errors and add .gitignore entries for MSVS 2019. Fixes + hashtable.h to be C99 compliant. (ardovm + https://github.com/librsync/librsync/pull/170) + ## librsync 2.1.0 Released 2019-08-19 diff --git a/librsync.spec b/librsync.spec index 373cc6e..da399f9 100644 --- a/librsync.spec +++ b/librsync.spec @@ -1,7 +1,7 @@ # This RPM supposes that you download the release zip file from github to SOURCES directory as v2.1.0.zip %define name librsync -%define version 2.1.0 +%define version 2.2.0 %define gitsource https://github.com/librsync/%{name}/archive/v%{version}.zip Summary: Rsync libraries @@ -72,6 +72,8 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/%{name}* %changelog +* Wed Oct 12 2019 Donovan Baarda <abo@minkirri.apana.org.au> +- Updated SPEC file for librsync 2.2.0 * Sat Aug 17 2019 Donovan Baarda <abo@minkirri.apana.org.au> - Updated SPEC file for librsync 2.1.0 * Tue Feb 27 2018 Orsiris de Jong <ozy@netpower> |