Skip to content

Commit 10c7bec

Browse files
authored
Merge pull request #103 from bdestombe/master
Bump version: 0.9.2 → 1.0.0
2 parents 9b92305 + e5e1e74 commit 10c7bec

File tree

7 files changed

+16
-7
lines changed

7 files changed

+16
-7
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.9.2
2+
current_version = 1.0.0
33
commit = True
44
tag = True
55

CHANGELOG.rst

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

22
Changelog
33
=========
4+
1.0.0 (2020-03-30)
5+
------------------
6+
* First major release
7+
* Reduced flexibility in defining names under which the Stokes are stored
8+
* 4 Averaging functions implemented, with uncertainty estimation. Seenotebook 16 for the various options
9+
* Notebook about transient attenuation caused by for example connectors
10+
* Bug in singel ended transient attenuation
11+
* Check for consistent number of measurement locations across read files
12+
413
0.9.2 (2020-03-17)
514
------------------
615
* Reduced flexibility in defining Stokes labels

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ doi: "10.5281/zenodo.1410097"
2222
license: "BSD-3-Clause"
2323
repository-code: "https://github.com/dtscalibration/python-dts-calibration"
2424
title: "Python distributed temperature sensing calibration"
25-
version: "v0.9.2"
25+
version: "v1.0.0"
2626
url: "https://python-dts-calibration.readthedocs.io"

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ Overview
3737
:alt: PyPI Package latest release
3838
:target: https://pypi.python.org/pypi/dtscalibration
3939

40-
.. |commits-since| image:: https://img.shields.io/github/commits-since/dtscalibration/python-dts-calibration/v0.9.2.svg
40+
.. |commits-since| image:: https://img.shields.io/github/commits-since/dtscalibration/python-dts-calibration/v1.0.0.svg
4141
:alt: Commits since latest release
42-
:target: https://github.com/dtscalibration/python-dts-calibration/compare/v0.9.2...master
42+
:target: https://github.com/dtscalibration/python-dts-calibration/compare/v1.0.0...master
4343

4444
.. |wheel| image:: https://img.shields.io/pypi/wheel/dtscalibration.svg
4545
:alt: PyPI Wheel

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
year = str(date.today().year)
3737
author = 'Bas des Tombe'
3838
copyright = '{0}, {1}'.format(year, author)
39-
version = release = '0.9.2'
39+
version = release = '1.0.0'
4040

4141
pygments_style = 'trac'
4242
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.9.2',
37+
version='1.0.0',
3838
license='BSD 3-Clause License',
3939
description='A Python package to load raw DTS files, perform a '
4040
'calibration, and plot the 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.9.2'
11+
__version__ = '1.0.0'
1212
__all__ = [
1313
"DataStore", "open_datastore", "open_mf_datastore",
1414
"read_apsensing_files", "read_sensornet_files", "read_sensortran_files",

0 commit comments

Comments
 (0)