Skip to content

Commit

Permalink
Preparing to release version 0.8.4 (#316)
Browse files Browse the repository at this point in the history
* incrementing version to 0.8.4

* update contributing.rst to include steps for making a new release

* updated changelog.rst for version 0.8.4

* version date in changelog
  • Loading branch information
DanHickstein committed Apr 15, 2021
1 parent 229f675 commit fa6a659
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 9 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ Changelog

Unreleased
----------


v0.8.4 (2020-04-15)
-------------------
* Added odd angular orders to tools.vmi.Distributions (PR #266).
* Important! Some "center" functions/parameters are renamed to "origin" or
"method"; using old names still works but will print deprecation warnings,
Expand All @@ -25,7 +29,8 @@ Unreleased
smoothing determined by the RMS tolerance instead of the nonintuitive
"smooth" parameter (PR #293).
* Corrected and improved tools.center (PR #302).
* Moved numpy import to try block in setup.py. This allows pip to install PyAbel in situations where numpy is not already installed. (PR #310)
* Moved numpy import to try block in setup.py. This allows pip to install PyAbel
in situations where numpy is not already installed. (PR #310)

v0.8.3 (2019-08-16)
-------------------
Expand Down
18 changes: 11 additions & 7 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ PyAbel is an open-source project, and we welcome improvements! Please let us kno
If you would like to make a Pull Request, the following information may be useful.


Change Log
----------

If the change is significant (more than just a typo-fix), please leave a short note about the change in `CHANGELOG.rst <https://github.com/PyAbel/PyAbel/blob/master/CHANGELOG.rst>`_


Unit tests
----------

Expand Down Expand Up @@ -102,7 +108,7 @@ Adding a new forward or inverse Abel implementation

We are always looking for new implementation of forward or inverse Abel transform, therefore if you have an implementation that you would want to contribute to PyAbel, don't hesitate to do so.

In order to allow a consistent user experience between different implementations and insure an overall code quality, please consider the following points in your pull request.
In order to allow a consistent user experience between different implementations and ensure an overall code quality, please consider the following points in your pull request.


Naming conventions
Expand Down Expand Up @@ -139,16 +145,14 @@ Dependencies
The current list of dependencies can be found in `setup.py <https://github.com/PyAbel/PyAbel/blob/master/setup.py>`_. Please refrain from adding new dependencies, unless it cannot be avoided.


Change Log
----------

If the change is significant (more than just a typo-fix), please leave a short note about the change in `CHANGELOG.rst <https://github.com/PyAbel/PyAbel/blob/master/CHANGELOG.rst>`_


Releasing on PyPi
-----------------

PyAbel should be automatically released on PyPi (see `PR #161 <https://github.com/PyAbel/PyAbel/pull/161>`_) whenever a new release is drafted on GitHub via the "Draft New Release" button on the `Releases page <https://github.com/PyAbel/PyAbel/releases>`_. Just remember to increment the version number in abel/_version.py first.
PyAbel should be automatically released on PyPi (see `PR #161 <https://github.com/PyAbel/PyAbel/pull/161>`_) whenever a new release is drafted on GitHub via the "Draft New Release" button on the `Releases page <https://github.com/PyAbel/PyAbel/releases>`_. But first, make a Pull Request that does the following:

- Increment the version number in abel/_version.py.
- Modify CHANGELOG.rst to include the new changes in the new version.


Citations
Expand Down
2 changes: 1 addition & 1 deletion abel/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.8.3"
__version__ = "0.8.4"

0 comments on commit fa6a659

Please sign in to comment.