From 719311ec7bf4b8c20c46ba7502cb8a7b3c62f160 Mon Sep 17 00:00:00 2001 From: Eduardo Rodrigues Date: Tue, 8 Nov 2022 17:59:45 +0100 Subject: [PATCH] chore: Prepare release 0.15.0 (#283) * Depend on Particle 0.21series * CHANGELOG.md update --- CHANGELOG.md | 17 +++++++++++++++++ environment.yml | 2 +- pyproject.toml | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f61d8a5..7374e8ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## Version 0.15.0 (2022-11-08) + +* Dependencies: + - Package dependent on ``Particle`` version 0.21.x. + - Adapted to Python 3 only Lark 1.x series. + - Support for Python 3.11 added and support for Python 3.6 removed. +* Parsing of decay files (aka .dec files): + - Updated to the latest Belle II master file DECAY.DEC. + - Added support for ModelAlias keyword used in Belle II decay files. +* Miscellaneous: + - Added a CITATION.cff file. + - Moved over to using hatchling. + - Started using AllContributors to acknowledge contributions explicitly. +* CI and tests: + - Updates to pre-commit hooks and CI YAML files. + - Various improvements to the CI. + ## Version 0.14.2 (2022-07-11) * Parsing of decay files (aka .dec files): diff --git a/environment.yml b/environment.yml index 2b69d6b5..1f7b5d97 100644 --- a/environment.yml +++ b/environment.yml @@ -11,6 +11,6 @@ dependencies: - lark>=1.0.0 - RISE - hepunits>=2.2.0 - - particle==0.20.* + - particle==0.21.* - pip: - . diff --git a/pyproject.toml b/pyproject.toml index 52a7d07b..432a43b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ dependencies = [ "lark>=1.0.0", "numpy>=1.12", "pandas>=0.22", - "particle==0.20.*", + "particle==0.21.*", "plumbum>=1.6.9", "typing-extensions;python_version<\"3.8\"", ]