Skip to content

Commit

Permalink
Bump to 0.1.0 (#77)
Browse files Browse the repository at this point in the history
* Update HISTORY.md

* Bump version: 0.0.0 → 0.1.0

* Stop reviewdog's wrong opinion
  • Loading branch information
dachengx authored Aug 11, 2023
1 parent 6826a68 commit 454eacb
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -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
11 changes: 11 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion alea/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.0.0'
__version__ = '0.1.0'

from .model import *

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 454eacb

Please sign in to comment.