From 454eacb510e17e9842a8ff82fbdbeaf7a5cce2d9 Mon Sep 17 00:00:00 2001 From: Dacheng Xu Date: Fri, 11 Aug 2023 11:38:14 -0400 Subject: [PATCH] Bump to 0.1.0 (#77) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update HISTORY.md * Bump version: 0.0.0 → 0.1.0 * Stop reviewdog's wrong opinion --- .bumpversion.cfg | 2 +- HISTORY.md | 11 +++++++++++ alea/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 5 files changed, 15 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 46317ce4..cbcced79 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.0 +current_version = 0.1.0 files = setup.py alea/__init__.py commit = True tag = True diff --git a/HISTORY.md b/HISTORY.md index eea1f174..0708081e 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,14 @@ +0.1.0 / 2023-08-11 +------------------ +* Unify and clean code style and docstring by @dachengx in https://github.com/XENONnT/alea/pull/68 +* First runner manipulating statistical model by @dachengx in https://github.com/XENONnT/alea/pull/50 +* Set best_fit_args to confidence_interval_args if None by @kdund in https://github.com/XENONnT/alea/pull/76 +* Livetime scaling by @kdund in https://github.com/XENONnT/alea/pull/73 + + +**Full Changelog**: https://github.com/XENONnT/alea/compare/v0.0.0...v0.1.0 + + 0.0.0 / 2023-07-28 ------------------ * readme update with pointer to previous work in lieu of commit history by @kdund in https://github.com/XENONnT/alea/pull/8 diff --git a/alea/__init__.py b/alea/__init__.py index 3a59b33b..06f8709f 100644 --- a/alea/__init__.py +++ b/alea/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.0.0' +__version__ = '0.1.0' from .model import * diff --git a/setup.cfg b/setup.cfg index bdad6eef..09beecf4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -81,4 +81,4 @@ ignore = C409, C819, D100, D205, D400, D401, D403, DAR101, DAR105, DAR201, DAR40 per-file-ignores = # There are multiple `assert`s in tests, we allow them: tests/*.py: S101 - alea/*__init__.py: F401 WPS347 + alea/*__init__.py: D104 F401 WPS347 WPS410 diff --git a/setup.py b/setup.py index 42e3a223..fa18123e 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ def open_requirements(path): setuptools.setup( name='alea-inference', - version='0.0.0', + version='0.1.0', description='A tool to perform toyMC-based inference constructions', author='Alea contributors, the XENON collaboration', long_description=readme + '\n\n' + history,