Skip to content

Commit d2e20ed

Browse files
committed
Getting ready for release 1.9.0
1 parent 474d99b commit d2e20ed

6 files changed

Lines changed: 17 additions & 8 deletions

File tree

ANNOUNCE.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
=============================
2-
Announcing python-blosc 1.8.3
2+
Announcing python-blosc 1.9.0
33
=============================
44

55
What is new?
66
============
77

8-
This is a quick release to fix a missing pyproject.toml that
9-
prevented to install the skbuild dependency.
10-
Also, sources for C-Blosc v1.17.2 have been included.
8+
In this release we got rid of support for Python 2.7 and 3.5.
9+
Also, we fixed the copy of the leftovers of a chunk when its size is not a
10+
multiple of the typesize. Although this is a very unusual situation,
11+
it can certainly happen (e.g. https://github.com/Blosc/python-blosc/issues/220).
12+
Finally, sources for C-Blosc v1.18.1 have been included.
1113

1214
For more info, you can have a look at the release notes in:
1315

LICENSES/BLOSC.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ BSD License
33
For Blosc - A blocking, shuffling and lossless compression library
44

55
Copyright (C) 2009-2018 Francesc Alted <francesc@blosc.org>
6+
Copyright (C) 2019-2020 The Blosc Development Team
67

78
Redistribution and use in source and binary forms, with or without modification,
89
are permitted provided that the following conditions are met:

LICENSES/PYTHON-BLOSC.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Copyright (C) 2010-2012 Francesc Alted (faltet@gmail.com)
66
Copyright (C) 2013-2015 Francesc Alted (faltet@gmail.com), Valentin Haenel (valentin@haenel.co)
77
Copyright (C) 2016-2017 Francesc Alted <francesc@blosc.org>
88
Copyright (C) 2018-2019 Francesc Alted <francesc@blosc.org>, Valentin Haenel <valentin@haenel.co>
9+
Copyright (C) 2020 The Blosc Development Team
910

1011
Redistribution and use in source and binary forms, with or without modification,
1112
are permitted provided that the following conditions are met:

RELEASE_NOTES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ Changes from 1.8.3 to 1.9.0
1515

1616
- Dropped support for Python 2.7 and 3.5.
1717

18+
- Fixed the copy of the leftovers of a chunk when its size is not a
19+
multiple of the typesize. Although this is a very unusual situation,
20+
it can certainly happen (e.g.
21+
https://github.com/Blosc/python-blosc/issues/220).
22+
1823

1924
Changes from 1.8.2 to 1.8.3
2025
===========================

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.8.4.dev0
1+
1.9.0

doc/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,16 @@
4949

5050
# General information about the project.
5151
project = u'python-blosc'
52-
copyright = u'2010-2019 Francesc Alted, Valentin Haenel'
52+
copyright = u'2010-2020 Blosc Developer Team'
5353

5454
# The version info for the project you're documenting, acts as replacement for
5555
# |version| and |release|, also used in various other places throughout the
5656
# built documents.
5757
#
5858
# The short X.Y version.
59-
version = '1.8'
59+
version = '1.9'
6060
# The full version, including alpha/beta/rc tags.
61-
release = '1.8.4'
61+
release = '1.9.0'
6262

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

0 commit comments

Comments
 (0)