Skip to content

Commit 513df5f

Browse files
committed
Tag open source release 1.1.5.
1 parent 5bc9c82 commit 513df5f

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CMAKE_MINIMUM_REQUIRED(VERSION 3.1)
2-
PROJECT(Snappy VERSION 1.1.4 LANGUAGES C CXX)
2+
PROJECT(Snappy VERSION 1.1.5 LANGUAGES C CXX)
33

44
SET(CMAKE_INCLUDE_CURRENT_DIR ON)
55

NEWS

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
Snappy v1.1.5, June 28th 2017:
2+
3+
* Add CMake build support. The autoconf build support is now deprecated, and
4+
will be removed in the next release.
5+
6+
* Add AppVeyor configuration, for Windows CI coverage.
7+
8+
* Small performance improvement on little-endian PowerPC.
9+
10+
* Small performance improvement on LLVM with position-independent executables.
11+
12+
* Fix a few issues with various build environments.
13+
114
Snappy v1.1.4, January 25th 2017:
215

316
* Fix a 1% performance regression when snappy is used in PIE executables.

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
m4_define([snappy_major], [1])
22
m4_define([snappy_minor], [1])
3-
m4_define([snappy_patchlevel], [4])
3+
m4_define([snappy_patchlevel], [5])
44

55
# Libtool shared library interface versions (current:revision:age)
66
# Update this value for every release! (A:B:C will map to foo.so.(A-C).C.B)
77
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
8-
m4_define([snappy_ltversion], [4:1:3])
8+
m4_define([snappy_ltversion], [4:1:4])
99

1010
AC_INIT([snappy], [snappy_major.snappy_minor.snappy_patchlevel])
1111
AC_CONFIG_MACRO_DIR([m4])

0 commit comments

Comments
 (0)