Skip to content

Commit

Permalink
Getting ready for 1.13.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Jan 26, 2018
1 parent ac47cac commit 0efc4e1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion ANNOUNCE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
What is new?
============

#XXX version-specific blurb XXX#
Fixed a buffer overrun that happens when compressing small buffers and
len(destination_buffer) < (len(source_buffer) + BLOSC_MAX_OVERHEAD).
Thanks to Ivan Smirnov for reporting this.

For more info, please see the release notes in:

Expand Down
4 changes: 3 additions & 1 deletion RELEASE_NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
Changes from 1.13.3 to 1.13.4
=============================

#XXX version-specific blurb XXX#
- Fixed a buffer overrun that happens when compressing small buffers and
len(destination_buffer) < (len(source_buffer) + BLOSC_MAX_OVERHEAD).
Reported by Ivan Smirnov.


Changes from 1.13.2 to 1.13.3
Expand Down
4 changes: 2 additions & 2 deletions blosc/blosc.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ extern "C" {
#define BLOSC_VERSION_MINOR 13 /* for minor interface/format changes */
#define BLOSC_VERSION_RELEASE 4 /* for tweaks, bug-fixes, or development */

#define BLOSC_VERSION_STRING "1.13.4.dev" /* string version. Sync with above! */
#define BLOSC_VERSION_STRING "1.13.4" /* string version. Sync with above! */
#define BLOSC_VERSION_REVISION "$Rev$" /* revision version */
#define BLOSC_VERSION_DATE "$Date:: 2018-01-25 #$" /* date version */
#define BLOSC_VERSION_DATE "$Date:: 2018-01-26 #$" /* date version */

#define BLOSCLZ_VERSION_STRING "1.1.0" /* the internal compressor version */

Expand Down

0 comments on commit 0efc4e1

Please sign in to comment.