Skip to content

Releasing v1.0.1 #117

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = 1.0.0
current_version = 1.0.1
commit = True
tag = True

Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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"
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ['.']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion src/dtscalibration/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down