diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a1d3120..f587a621 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ ### New features +## Version 1.1.0 (2018-03-09) + +### New features + * [Commit 2bd12bd](https://github.com/MassimoCimmino/pygfunction/commit/2bd12bd254928889431366c2ddd38539e246ef05) - Implemented `UTube.visualize_pipes()` class method. * [Issue 30](https://github.com/MassimoCimmino/pygfunction/issues/30) - Laminar regime is now considered for calculation of convection heat transfer coefficient. * [Issue 32](https://github.com/MassimoCimmino/pygfunction/issues/32) - g-Functions for bore fields with mixed series and parallel connections between boreholes. diff --git a/doc/source/conf.py b/doc/source/conf.py index bcc7ce99..a6b2b7ee 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = u'1.0' +version = u'1.1' # The full version, including alpha/beta/rc tags. -release = u'1.0.0' +release = u'1.1.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 5a0ce978..51c924a8 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def read(fname): setup( name="pygfunction", - version="1.0.0", + version="1.1.0", packages=['pygfunction', 'pygfunction/examples'], include_package_data=True,