From 7021be68de839bd22a581a64334610df1ea08c2d Mon Sep 17 00:00:00 2001 From: Bas des Tombe Date: Thu, 4 Jun 2020 13:38:37 +0200 Subject: [PATCH 1/2] =?UTF-8?q?Bump=20version:=201.0.0=20=E2=86=92=201.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CITATION.cff | 2 +- README.rst | 4 ++-- docs/conf.py | 2 +- setup.py | 2 +- src/dtscalibration/__init__.py | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index bb4a7246..8cf00895 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 commit = True tag = True diff --git a/CITATION.cff b/CITATION.cff index c4cde3c5..bb08ac01 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -22,5 +22,5 @@ doi: "10.5281/zenodo.1410097" license: "BSD-3-Clause" repository-code: "https://github.com/dtscalibration/python-dts-calibration" title: "Python distributed temperature sensing calibration" -version: "v1.0.0" +version: "v1.0.1" url: "https://python-dts-calibration.readthedocs.io" diff --git a/README.rst b/README.rst index ff620db2..c621331c 100644 --- a/README.rst +++ b/README.rst @@ -37,9 +37,9 @@ Overview :alt: PyPI Package latest release :target: https://pypi.python.org/pypi/dtscalibration -.. |commits-since| image:: https://img.shields.io/github/commits-since/dtscalibration/python-dts-calibration/v1.0.0.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/dtscalibration/python-dts-calibration/v1.0.1.svg :alt: Commits since latest release - :target: https://github.com/dtscalibration/python-dts-calibration/compare/v1.0.0...master + :target: https://github.com/dtscalibration/python-dts-calibration/compare/v1.0.1...master .. |wheel| image:: https://img.shields.io/pypi/wheel/dtscalibration.svg :alt: PyPI Wheel diff --git a/docs/conf.py b/docs/conf.py index 38ace9b0..e66052f2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -41,7 +41,7 @@ year = str(date.today().year) author = 'Bas des Tombe and Bart Schilperoort' copyright = '{0}, {1}'.format(year, author) -version = release = '1.0.0' +version = release = '1.0.1' pygments_style = 'trac' templates_path = ['.'] diff --git a/setup.py b/setup.py index 620599a2..77f94248 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ def get_authors(file='AUTHORS.rst'): setup( name='dtscalibration', - version='1.0.0', + version='1.0.1', license='BSD 3-Clause License', description='A Python package to load raw DTS files, perform a ' 'calibration, and plot the result', diff --git a/src/dtscalibration/__init__.py b/src/dtscalibration/__init__.py index a5e6c998..7f6606fa 100644 --- a/src/dtscalibration/__init__.py +++ b/src/dtscalibration/__init__.py @@ -18,7 +18,7 @@ from .plot import plot_residuals_reference_sections_single from .plot import plot_sigma_report -__version__ = '1.0.0' +__version__ = '1.0.1' __all__ = [ "DataStore", "open_datastore", "open_mf_datastore", "read_apsensing_files", "read_sensornet_files", "read_sensortran_files", "read_silixa_files", From ff962a38d5a417d39df5ed61568acd5408682df2 Mon Sep 17 00:00:00 2001 From: Bas des Tombe Date: Thu, 4 Jun 2020 13:47:53 +0200 Subject: [PATCH 2/2] Updated changelog for v1.0.1 release Signed-off-by: Bas des Tombe --- CHANGELOG.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b6fe8b04..6787c2eb 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Changelog ========= +1.0.1 (2020-05-04) +------------------ +* Variances can now passed as a float, a function, or an array to calibrationroutines +* European Geosciences Union conference 2020 presentation added +* Check for nans from reference temperature in wls_sparse routine +* Updated documentation with content article +* Use YAPF formatting of the Python files. + 1.0.0 (2020-03-30) ------------------ * First major release