Skip to content

Commit

Permalink
patched version
Browse files Browse the repository at this point in the history
  • Loading branch information
FedericoTartarini committed Mar 16, 2020
1 parent 7dcf0ec commit c40b7ce
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
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 = 0.6.0
current_version = 0.6.1
commit = True
tag = True

Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
Changelog
=========

0.6.0
0.6.1
------------------

* Renamed function to_calc to t_o
* renamed input parameter ta to tdb
* Added function to calculate mean radiant temperature from black globe temperature
* Added function to calculate solar gain on people
* Added functions to calculate vapour pressure, wet-bulb temperature, dew point temperature, and psychrometric data from dry bulb temperature and RH
* Added authors

0.5.2 (2020-03-11)
------------------
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ Overview
:alt: Supported implementations
:target: https://pypi.org/project/pythermalcomfort

.. |commits-since| image:: https://img.shields.io/github/commits-since/CenterForTheBuiltEnvironment/pythermalcomfort/v0.6.0.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/CenterForTheBuiltEnvironment/pythermalcomfort/v0.6.1.svg
:alt: Commits since latest release
:target: https://github.com/CenterForTheBuiltEnvironment/pythermalcomfort/compare/v0.6.0...master
:target: https://github.com/CenterForTheBuiltEnvironment/pythermalcomfort/compare/v0.6.1...master



Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
year = '2019-2020'
author = 'Federico Tartarini'
copyright = '{0}, {1}'.format(year, author)
version = release = '0.6.0'
version = release = '0.6.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 @@ -25,7 +25,7 @@ def read(*names, **kwargs):

setup(
name='pythermalcomfort',
version='0.6.0',
version='0.6.1',
license='MIT',
description='Package to calculate several thermal comfort indices (e.g. PMV, PPD, SET, adaptive) and convert physical variables.',
long_description='%s\n%s' % (
Expand Down
2 changes: 1 addition & 1 deletion src/pythermalcomfort/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '0.6.0'
__version__ = '0.6.1'

from pythermalcomfort.models import *

0 comments on commit c40b7ce

Please sign in to comment.