summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Pool <mbp@sourcefrog.net>2015-11-29 12:43:12 -0800
committerMartin Pool <mbp@sourcefrog.net>2015-11-29 12:43:12 -0800
commit26164eeeb34334e66fa4f3d22f296ab407d84507 (patch)
tree38e365f8bfe53e7b2d0304e2954969c53f2ab2d8
parenta6a0c7c411805eb4957d64daf9999cbff7122d73 (diff)
downloadlibrsync-26164eeeb34334e66fa4f3d22f296ab407d84507.tar.gz
Bump version to 2.0.0 to match sonamev2.0.0
Fixes #48.
-rw-r--r--CMakeLists.txt4
-rw-r--r--NEWS.md11
-rw-r--r--src/librsync.h2
3 files changed, 14 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ec9a1ea..ec0d26d 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -18,9 +18,9 @@ project(librsync)
cmake_minimum_required(VERSION 2.6)
-set(LIBRSYNC_MAJOR_VERSION 1)
+set(LIBRSYNC_MAJOR_VERSION 2)
set(LIBRSYNC_MINOR_VERSION 0)
-set(LIBRSYNC_PATCH_VERSION 1)
+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 e56f623..1295a45 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,5 +1,16 @@
# librsync NEWS
+## librsync 2.0.0
+
+Released 2015-11-29
+
+Note: despite the major version bump, this release has few changes and should
+be binary and API compatible with the previous version.
+
+ * Bump librsync version number to 2.0, to match the library
+ soname/dylib version.
+ (Martin Pool, https://github.com/librsync/librsync/issues/48)
+
## librsync 1.0.1 (2015-11-21)
* Better performance on large files. (VictorDenisov)
diff --git a/src/librsync.h b/src/librsync.h
index 39eec36..1fc760e 100644
--- a/src/librsync.h
+++ b/src/librsync.h
@@ -32,7 +32,7 @@
*
* \brief Main public interface to librsync.
* \author Martin Pool <mbp@sourcefrog.net>
- * \version librsync-1.0.0
+ * \version librsync-2.0.0
*
* See \ref intro for an introduction to use of this library.
*/