Skip to content

Commit

Permalink
Release version 1.0.2 of ibm2ieee (#14)
Browse files Browse the repository at this point in the history
* Update changelog in preparation for 1.0.2 release

* Emphasize the NumPy dependency changes in the changelog

* Bump version in preparation for the 1.0.2 release

* Remove accidentally added backup file

* Update CHANGES

* Remove non-user-visible change from changelog

* Add changelog entry for #15

Also change the statement that none of the core functionality is changed.

* Add separate entry for micro-optimization
  • Loading branch information
mdickinson authored Feb 9, 2020
1 parent 3a8ac28 commit 9c335e3
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
Changelog for ibm2ieee
======================

Release 1.0.2
-------------

Release date: 2020-02-09

This is a bugfix release, addressing distribution and development
issues along with minor cleanups to the core.

- Require NumPy >= 1.14.5 at runtime; build against NumPy == 1.14.5
at installation time. (PR #8)
- Replace the ``packaging`` dependency of the test suite with
``setuptools``; add explicit dependency of the test suite on ``six``.
(PR #11)
- Add classifiers for Python 3.7 and 3.8, and add Python 3.7 and 3.8
to the test matrix for Travis and Appveyor. (PR #8)
- Silence some current and future compiler and linter warnings in
the core C code. (PR #15)
- Apply a micro-optimization for the 64-bit IBM to 32-bit IEEE conversion,
replacing a 64-bit addition with a 32-bit addition. (PR #15)


Release 1.0.1
-------------

Expand Down
2 changes: 1 addition & 1 deletion ibm2ieee/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from __future__ import absolute_import, print_function, unicode_literals

# Version string.
version = "1.0.1"
version = "1.0.2"

0 comments on commit 9c335e3

Please sign in to comment.