mirror of https://github.com/google/snappy.git
Release Snappy 1.1.2.
R=jeff git-svn-id: https://snappy.googlecode.com/svn/trunk@84 03e5f5b5-db94-4691-08a0-1a8bf15f6143
This commit is contained in:
parent
19690d78e8
commit
1ff9be9b8f
30
ChangeLog
30
ChangeLog
|
@ -1,3 +1,33 @@
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
r83 | snappy.mirrorbot@gmail.com | 2014-02-19 11:31:49 +0100 (Wed, 19 Feb 2014) | 9 lines
|
||||||
|
|
||||||
|
Fix public issue 82: Stop distributing benchmark data files that have
|
||||||
|
unclear or unsuitable licensing.
|
||||||
|
|
||||||
|
In general, we replace the files we can with liberally licensed data,
|
||||||
|
and remove all the others (in particular all the parts of the Canterbury
|
||||||
|
corpus that are not clearly in the public domain). The replacements
|
||||||
|
do not always have the exact same characteristics as the original ones,
|
||||||
|
but they are more than good enough to be useful for benchmarking.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
r82 | snappy.mirrorbot@gmail.com | 2013-10-25 15:31:27 +0200 (Fri, 25 Oct 2013) | 8 lines
|
||||||
|
|
||||||
|
Add support for padding in the Snappy framed format.
|
||||||
|
|
||||||
|
This is specifically motivated by DICOM's demands that embedded data
|
||||||
|
must be of an even number of bytes, but could in principle be used for
|
||||||
|
any sort of padding/alignment needed.
|
||||||
|
|
||||||
|
R=sanjay
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
r81 | snappy.mirrorbot@gmail.com | 2013-10-15 17:21:31 +0200 (Tue, 15 Oct 2013) | 4 lines
|
||||||
|
|
||||||
|
Release Snappy 1.1.1.
|
||||||
|
|
||||||
|
R=jeff
|
||||||
|
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
r80 | snappy.mirrorbot@gmail.com | 2013-08-13 14:55:00 +0200 (Tue, 13 Aug 2013) | 6 lines
|
r80 | snappy.mirrorbot@gmail.com | 2013-08-13 14:55:00 +0200 (Tue, 13 Aug 2013) | 6 lines
|
||||||
|
|
||||||
|
|
11
NEWS
11
NEWS
|
@ -1,3 +1,14 @@
|
||||||
|
Snappy v1.1.2, February 28th 2014:
|
||||||
|
|
||||||
|
This is a maintenance release with no changes to the actual library
|
||||||
|
source code.
|
||||||
|
|
||||||
|
* Stop distributing benchmark data files that have unclear
|
||||||
|
or unsuitable licensing.
|
||||||
|
|
||||||
|
* Add support for padding chunks in the framing format.
|
||||||
|
|
||||||
|
|
||||||
Snappy v1.1.1, October 15th 2013:
|
Snappy v1.1.1, October 15th 2013:
|
||||||
|
|
||||||
* Add support for uncompressing to iovecs (scatter I/O).
|
* Add support for uncompressing to iovecs (scatter I/O).
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
m4_define([snappy_major], [1])
|
m4_define([snappy_major], [1])
|
||||||
m4_define([snappy_minor], [1])
|
m4_define([snappy_minor], [1])
|
||||||
m4_define([snappy_patchlevel], [1])
|
m4_define([snappy_patchlevel], [2])
|
||||||
|
|
||||||
# Libtool shared library interface versions (current:revision:age)
|
# Libtool shared library interface versions (current:revision:age)
|
||||||
# Update this value for every release! (A:B:C will map to foo.so.(A-C).C.B)
|
# Update this value for every release! (A:B:C will map to foo.so.(A-C).C.B)
|
||||||
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
|
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
|
||||||
m4_define([snappy_ltversion], [3:0:2])
|
m4_define([snappy_ltversion], [3:1:2])
|
||||||
|
|
||||||
AC_INIT([snappy], [snappy_major.snappy_minor.snappy_patchlevel])
|
AC_INIT([snappy], [snappy_major.snappy_minor.snappy_patchlevel])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
|
|
Loading…
Reference in New Issue