Skip to content

Commit

Permalink
Bump version 0.4.1 -> 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
D1rk123 committed Feb 9, 2022
1 parent 04b4348 commit 3477a07
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 deletions.
25 changes: 24 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,28 @@ Versioning](https://semver.org/spec/v2.0.0.html) when it reaches version 1.0.
### Changed
### Fixed
### Removed
### Deprecated
### Security

## [0.5.0] - 2022-02-01
This release is mostly about maintaining existing functionality. The tomosipo paper and Astra toolbox 2 were released, there is a new maintainer, and some bugs were fixed. The conda package is now the default installation option.

### Added
- Added information and Bibtex entry of the tomosipo paper to the readme

### Changed
- Changed repository maintainer from Allard Hendriksen to Dirk Schut
- The conda package is now the default installation option, instead of cloning from Github with pip. This is changed in the readme
- Astra toolbox 2 was released so it is now the required version. There were no API changes compared to the recent development version that was required before.
- Removed cupy and odl packages from the environment presented in the documentation.
Cupy was removed because of cudatoolkit error messages
ODL was removed because it changes the global numpy formatting options

### Fixed
- Replaced usage of np.int which was deprecated in numpy 1.20 with int
- Replaced the usage of collect_ignore in setup.cfg because it was removed from pytest
- Licence information was updated to show GPLv3


## [0.4.1] - 2021-07-18
Bug fix release for `ts.rotate` (again)..
Expand Down Expand Up @@ -114,7 +136,8 @@ This is a major release. It introduces two features that define tomosipo in its



[Unreleased]: https://github.com/ahendriksen/tomosipo/compare/v0.4.1...HEAD
[Unreleased]: https://github.com/ahendriksen/tomosipo/compare/v0.5.0...develop
[0.5.0]: https://github.com/ahendriksen/tomosipo/compare/v0.4.1...v0.5.0
[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
Expand Down
3 changes: 2 additions & 1 deletion conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ about:
home: https://github.com/ahendriksen/tomosipo
license: GPL-3.0-only
license_file: LICENSE
summary: "A usable Python astra-based tomography library."
summary: "Library for painless 3D tomographic reconstruction based on Astra."

extra:
maintainers:
- Dirk Schut
- Allard Hendriksen
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@
extras_require={'dev': dev_requirements},
url='https://github.com/ahendriksen/tomosipo',
# Also edit the version in tomosipo/__init__.py!
version='0.4.1',
version='0.5.0',
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.1"
__version__ = "0.5.0"

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

0 comments on commit 3477a07

Please sign in to comment.