Skip to content

Commit

Permalink
Post 1.7.0 release actions done
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Jul 5, 2015
1 parent 824f31b commit 1f11480
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 23 deletions.
22 changes: 2 additions & 20 deletions ANNOUNCE.rst
Original file line number Diff line number Diff line change
@@ -1,30 +1,12 @@
===============================================================
Announcing c-blosc 1.7.0
Announcing c-blosc 1.7.1
A blocking, shuffling and lossless compression library for C
===============================================================

What is new?
============

This is a quite big release introducing some exciting new features:

* A new 'bitshuffle' filter is here. This is similar that the
existing 'shuffle' filter, but the shuffle takes place at bit level,
and not at byte level. With it you can expect higher compression
ratios but still having pretty good speed. For more info, see:
http://blosc.org/blog/new-bitshuffle-filter.html

* Implemented a new acceleration mode for LZ4 (updated to 1.7.0) and
BloscLZ codecs that enters in operation with all compression levels
except for the highest (9). This allows for an important boost in
speed with minimal compression ratio loss.

* Jack Pappas made great contributions allowing SSE2 operation in more
scenarios (like types larger than 16 bytes or buffers not being a
multiple of typesize * vectorsize). Another contribution is a much
more comprehensive test suite for SSE2 and AVX2 operation.

* Zbyszek Szmek fixed compilation on non-Intel archs (tested on ARM).
#XXX version-specific blurb XXX#

For more info, please see the release notes in:

Expand Down
8 changes: 7 additions & 1 deletion RELEASE_NOTES.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
=================================
Release notes for c-blosc 1.7.0
Release notes for c-blosc 1.7.1
=================================

:Author: Francesc Alted
:Contact: francesc@blosc.org
:URL: http://www.blosc.org


Changes from 1.7.0 to 1.7.1
===========================

#XXX version-specific blurb XXX#


Changes from 1.6.1 to 1.7.0
===========================

Expand Down
4 changes: 2 additions & 2 deletions blosc/blosc.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ extern "C" {
/* Version numbers */
#define BLOSC_VERSION_MAJOR 1 /* for major interface/format changes */
#define BLOSC_VERSION_MINOR 7 /* for minor interface/format changes */
#define BLOSC_VERSION_RELEASE 0 /* for tweaks, bug-fixes, or development */
#define BLOSC_VERSION_RELEASE 1 /* for tweaks, bug-fixes, or development */

#define BLOSC_VERSION_STRING "1.7.0" /* string version. Sync with above! */
#define BLOSC_VERSION_STRING "1.7.1.dev" /* string version. Sync with above! */
#define BLOSC_VERSION_REVISION "$Rev$" /* revision version */
#define BLOSC_VERSION_DATE "$Date:: 2015-07-05 #$" /* date version */

Expand Down

0 comments on commit 1f11480

Please sign in to comment.