Skip to content

Commit

Permalink
Getting ready for release 1.10.5
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Oct 6, 2021
1 parent f0da128 commit 0479e2e
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cibuildwheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ on:
jobs:
build_wheels:
name: Build wheels for ${{ matrix.arch }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
runs-on: ${{ matrix.os }} # Only build wheels when tagging (typically a release)
if: startsWith(github.event.ref, 'refs/tags')
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
Expand Down
8 changes: 4 additions & 4 deletions ANNOUNCE.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
==============================
Announcing python-blosc 1.10.4
Announcing python-blosc 1.10.5
==============================

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

This is a maintenance release to update `blosc.nthreads`
when `blosc.set_nthreads()` is called.
This is a maintenance release fixing several things, and
updating vendored C-Blosc to 1.21.1.

We are generating wheels for Intel (32 and 64 bits) and all major OS
We are generating wheels for Intel (64 bits) and all major OS
(Win, Linux, Mac). In addition to extensions, we are distributing library
binaries in the wheels too. This way, people willing to use the C-Blosc
library can make use of these wheels to install the necessary development
Expand Down
10 changes: 8 additions & 2 deletions RELEASE_NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,19 @@
Changes from 1.10.4 to 1.10.5
=============================

#XXX version-specific blurb XXX#
- Reenable the possibility to use an already installed C-Blosc library.
See #244. Thanks to Ben Greiner.
- Add aarch64 wheels. See #250. Thanks to @odidev.
- Deactivate SSE2 and AVX2 if a CPU has no flags. See #242.
Thanks to Graham Inggs.
- Wheels for Linux 32 bits are not distributed anymore.
- Updated vendored C-Blosc to 1.21.1.


Changes from 1.10.2 to 1.10.4
=============================

* Update `blosc.nthreads` when `blosc.set_nthreads()` is called.
- Update `blosc.nthreads` when `blosc.set_nthreads()` is called.
Fixes #246


Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.10.5.dev0
1.10.5
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
# The short X.Y version.
version = '1.10'
# The full version, including alpha/beta/rc tags.
release = '1.10.4'
release = '1.10.5'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 0479e2e

Please sign in to comment.