Skip to content

Commit

Permalink
Bump version 0.4.0 -> 0.4.1
Browse files Browse the repository at this point in the history
Fix ts.rotate again...
  • Loading branch information
ahendriksen committed Jul 18, 2021
1 parent 1d6952d commit 947f6fe
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,19 @@ Versioning](https://semver.org/spec/v2.0.0.html) when it reaches version 1.0.
### Fixed
### Removed

## [0.4.1] - 2021-07-18
Bug fix release for `ts.rotate` (again)..

### Fixed
- `ts.rotate`: the rotation matrix had become transposed while fixing https://github.com/ahendriksen/tomosipo/issues/7. This has now been fixed.


## [0.4.0] - 2021-07-15
Bug fix release for `ts.rotate`. Minor bump for automatic torch and cupy
linking.

**NOTE**: `ts.rotate` is **broken** in this release. Please use v0.4.1.

### Changed
- It is no longer necessary to import `tomosipo.torch_support` or
`tomosipo.cupy` to enable support for linking torch and cupy arrays. Support
Expand Down Expand Up @@ -105,7 +114,8 @@ This is a major release. It introduces two features that define tomosipo in its



[Unreleased]: https://github.com/ahendriksen/tomosipo/compare/v0.4.0...HEAD
[Unreleased]: https://github.com/ahendriksen/tomosipo/compare/v0.4.1...HEAD
[0.4.1]: https://github.com/ahendriksen/tomosipo/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/ahendriksen/tomosipo/compare/v0.3.1...v0.4.0
[0.3.1]: https://github.com/ahendriksen/tomosipo/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/ahendriksen/tomosipo/compare/v0.2.0...v0.3.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,6 @@
extras_require={'dev': dev_requirements},
url='https://github.com/ahendriksen/tomosipo',
# Also edit the version in tomosipo/__init__.py!
version='0.4.0',
version='0.4.1',
zip_safe=False,
)
2 changes: 1 addition & 1 deletion tomosipo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__author__ = """Allard Hendriksen"""
__email__ = "[email protected]"
# Also edit the version in setup.py!
__version__ = "0.4.0"
__version__ = "0.4.1"

from .Operator import operator
from .Data import data
Expand Down

0 comments on commit 947f6fe

Please sign in to comment.