mirror of https://github.com/google/snappy.git
Release Snappy 1.1.3; getting the new Uncompress variant in a release is nice,
and it's also good to finally get an official release out after the migration to GitHub. The GitHub releases are basically done by tagging a commit and then uploading the .tar.gz file generated by make dist as a binary asset; GitHub will add all files on the tagged commit on top of the tarball and recompress, but since we don't have any nodist_* files in configure.ac, this works fine for us. (As far as I can see, this behavior of GitHub--uncompressing the .tar.gz, and the behavior of silently ignoring files in it that are also in the git repository--is undocumented, but also seems to be used in some official screenshots, so I guess we can rely on it.) A=sesse R=jeff
This commit is contained in:
parent
eb66d8176b
commit
efb39e81b8
12
NEWS
12
NEWS
|
@ -1,3 +1,15 @@
|
|||
Snappy v1.1.3, July 6th 2015:
|
||||
|
||||
This is the first release to be done from GitHub, which means that
|
||||
some minor things like the ChangeLog format has changed (git log
|
||||
format instead of svn log).
|
||||
|
||||
* Add support for Uncompress() from a Source to a Sink.
|
||||
|
||||
* Various minor changes to improve MSVC support; in particular,
|
||||
the unit tests now compile and run under MSVC.
|
||||
|
||||
|
||||
Snappy v1.1.2, February 28th 2014:
|
||||
|
||||
This is a maintenance release with no changes to the actual library
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
m4_define([snappy_major], [1])
|
||||
m4_define([snappy_minor], [1])
|
||||
m4_define([snappy_patchlevel], [2])
|
||||
m4_define([snappy_patchlevel], [3])
|
||||
|
||||
# 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)
|
||||
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
|
||||
m4_define([snappy_ltversion], [3:1:2])
|
||||
m4_define([snappy_ltversion], [4:0:3])
|
||||
|
||||
AC_INIT([snappy], [snappy_major.snappy_minor.snappy_patchlevel])
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
|
|
Loading…
Reference in New Issue