Skip to content

Commit 9933ad8

Browse files
committed
[SKIP] version bump 0.1.5 -> 0.2.0
[FEATURE] Merge pull request #16 from menoliu/update-syntax Fixes bug for reading `pre` and `noe` data files
1 parent 59c90dd commit 9933ad8

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.5
2+
current_version = 0.2.0
33
commit = True
44
message =
55
[SKIP] version bump {current_version} -> {new_version}

CHANGELOG.rst

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
Changelog
33
=========
44

5+
v0.2.0 (2025-01-15)
6+
------------------------------------------------------------
7+
58
* Update syntax for NOE and PRE experimental values from ``value`` to ``dist_value``
69

710
v0.1.5 (2024-11-19)

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ If you use X-EISDv2, please cite::
4343
Version
4444
-------
4545

46-
v0.1.5
46+
v0.2.0

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
year = '2022'
4949
author = 'Zi Hao Liu'
5050
copyright = '{0}, {1}'.format(year, author)
51-
version = release = '0.1.5'
51+
version = release = '0.2.0'
5252

5353
pygments_style = 'trac'
5454
templates_path = ['.']

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def read(*names, **kwargs):
3636

3737
setup(
3838
name='xeisd',
39-
version='0.1.5',
39+
version='0.2.0',
4040
description='A skeleton template for Python projects.',
4141
long_description=long_description,
4242
long_description_content_type='text/x-rst',

src/xeisd/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ def count_string_formatters(s):
7979

8080
source_folder = Path(__file__).absparent
8181

82-
__version__ = '0.1.5'
82+
__version__ = '0.2.0'

0 commit comments

Comments
 (0)