summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonovan Baarda <abo@minkirri.apana.org.au>2019-10-12 15:16:16 +1100
committerGitHub <noreply@github.com>2019-10-12 15:16:16 +1100
commit09a287e2a79fe8aea08b8440127c4e3912fc7355 (patch)
tree01b54db48af865e1ba71ded8f041914780b16911
parentebc7f7a9338e79c087f573607e335cb64f3ad167 (diff)
parent8c20035d52b41b4ff1089c3e7428002f0856bf64 (diff)
downloadlibrsync-09a287e2a79fe8aea08b8440127c4e3912fc7355.tar.gz
Merge pull request #173 from dbaarda/release/2.2.0v2.2.0
Release v2.2.0.
-rw-r--r--CMakeLists.txt4
-rw-r--r--NEWS.md11
-rw-r--r--librsync.spec4
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})
diff --git a/NEWS.md b/NEWS.md
index b9be381..58fae3f 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -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>