Skip to content

Commit ade995f

Browse files
authored
Merge pull request #70 from bdestombe/master
Version bump in attempt to fix Zenodo updating
2 parents 27566eb + 2a9ef46 commit ade995f

File tree

7 files changed

+12
-8
lines changed

7 files changed

+12
-8
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.7.3
2+
current_version = 0.7.4
33
commit = True
44
tag = True
55

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11

22
Changelog
33
=========
4+
0.7.4 (2020-01-26)
5+
------------------
6+
* Update automated zenodo reference requires to draft a new release
7+
48
0.7.3 (2020-01-24)
59
------------------
610
* Solved xlim in subplots of plot_residuals_reference_sections funciton

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ doi: "10.5281/zenodo.1410097"
1616
license: "BSD-3-Clause"
1717
repository-code: "https://github.com/dtscalibration/python-dts-calibration"
1818
title: "Python distributed temperature sensing calibration"
19-
version: "v0.7.3"
19+
version: "v0.7.4"
2020
...

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ Overview
4444
:alt: PyPI Package latest release
4545
:target: https://pypi.python.org/pypi/dtscalibration
4646

47-
.. |commits-since| image:: https://img.shields.io/github/commits-since/dtscalibration/python-dts-calibration/v0.7.3.svg
47+
.. |commits-since| image:: https://img.shields.io/github/commits-since/dtscalibration/python-dts-calibration/v0.7.4.svg
4848
:alt: Commits since latest release
49-
:target: https://github.com/dtscalibration/python-dts-calibration/compare/v0.7.3...master
49+
:target: https://github.com/dtscalibration/python-dts-calibration/compare/v0.7.4...master
5050

5151
.. |wheel| image:: https://img.shields.io/pypi/wheel/dtscalibration.svg
5252
:alt: PyPI Wheel
@@ -81,7 +81,7 @@ Installation
8181
::
8282

8383
pip install dtscalibration
84-
84+
8585
Or the development version directly from GitHub
8686

8787
::

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
year = '2018'
3636
author = 'Bas des Tombe'
3737
copyright = '{0}, {1}'.format(year, author)
38-
version = release = '0.7.3'
38+
version = release = '0.7.4'
3939

4040
pygments_style = 'trac'
4141
templates_path = ['.']

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def get_authors(file='AUTHORS.rst'):
3434

3535
setup(
3636
name='dtscalibration',
37-
version='0.7.3',
37+
version='0.7.4',
3838
license='BSD 3-Clause License',
3939
description='A Python package to load raw DTS files, perform a calibration, and plot the '
4040
'result',

src/dtscalibration/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .datastore import read_sensortran_files
99
from .datastore import read_silixa_files
1010

11-
__version__ = '0.7.3'
11+
__version__ = '0.7.4'
1212
__all__ = [
1313
"DataStore", "open_datastore", "open_mf_datastore",
1414
"read_apsensing_files", "read_sensornet_files", "read_sensortran_files",

0 commit comments

Comments
 (0)