Skip to content

Commit

Permalink
Prepare version 0.5.0 (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardo-rodrigues authored Oct 11, 2019
1 parent 877ff97 commit c6f2bbe
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
10 changes: 4 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
# Changelog

## Version 0.4.1

In development.

* Changes in API:
- ``DecFileParser.build_decay_chain()`` renamed to ``DecFileParser.build_decay_chains()``.
## Version 0.5.0 (2019-10-11)

* Universal representation of decay chains:
- Class ``DecayChain`` introduced.
- Classes ``DaughtersDict`` and ``DecayMode`` enhanced.
* Changes in API:
- ``DecFileParser.build_decay_chain()`` renamed to ``DecFileParser.build_decay_chains()``.
* Package dependent on ``Particle`` package version 0.6.


## Version 0.4.0 (2019-09-02)
Expand Down
2 changes: 1 addition & 1 deletion decaylanguage/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# or https://github.com/scikit-hep/decaylanguage for details.


__version__ = '0.4.0'
__version__ = '0.5.0'

version = __version__
version_info = __version__.split('.')
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies:
- pydot>=1.3.0
- pip:
- hepunits>=1.0.0
- particle>=0.6.0
- particle=0.6.*
- lark-parser>=0.6.3
- plumbum>=1.6.6
- RISE
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def get_version():

setup(
name='decaylanguage',
author='Henry Fredrick Schreiner III',
author_email='[email protected]',
author='Henry Fredrick Schreiner III, Eduardo Rodrigues',
author_email='[email protected], [email protected]',
maintainer = 'The Scikit-HEP admins',
maintainer_email = '[email protected]',
version = get_version(),
Expand Down Expand Up @@ -84,7 +84,7 @@ def get_version():
'enum34>=1.1; python_version<"3.4"',
'importlib_resources>=1.0; python_version<"3.7"',
'cachetools; python_version<"3.3"',
'particle>=0.6.0'
'particle==0.6'
],
extras_require=extras,
setup_requires=[] + pytest_runner,
Expand Down

0 comments on commit c6f2bbe

Please sign in to comment.