Skip to content

Commit

Permalink
Merge pull request #154 from dtscalibration/v1-1-bump
Browse files Browse the repository at this point in the history
Bump version: 1.0.2 → 1.1.0
  • Loading branch information
BSchilperoort authored Sep 25, 2022
2 parents a38be36 + 3909b0c commit 1c04602
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.2
current_version = 1.1.0
commit = True
tag = True

Expand All @@ -22,4 +22,3 @@ replace = __version__ = '{new_version}'
[bumpversion:file:CITATION.cff]
search = "v{current_version}"
replace = "v{new_version}"

2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Changelog
=========
1.1.0 (UNRELEASED)
1.1.0 (2022-09-25)
------------------
New features

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.2"
version: "v1.1.0"
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.2.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/dtscalibration/python-dts-calibration/v1.1.0.svg
:alt: Commits since latest release
:target: https://github.com/dtscalibration/python-dts-calibration/compare/v1.0.2...master
:target: https://github.com/dtscalibration/python-dts-calibration/compare/v1.1.0...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.2'
version = release = '1.1.0'

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.2',
version='1.1.0',
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.2'
__version__ = '1.1.0'
__all__ = [
"DataStore", "open_datastore", "open_mf_datastore", "read_apsensing_files",
"read_sensornet_files", "read_sensortran_files", "read_silixa_files",
Expand Down

0 comments on commit 1c04602

Please sign in to comment.