From db8df45efe3162ad7c17ea78e298df9ff799438d Mon Sep 17 00:00:00 2001 From: Onur Rauf Bingol Date: Thu, 17 Jan 2019 19:57:35 -0600 Subject: [PATCH] Version bump to v5.0b5 --- CHANGELOG.md | 13 +++++++++++++ geomdl/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a517fafa..45768011 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## v5.0b5 released on 2019-01-17 + +* Minor API updates and fixes +* Added more convenience methods to spline geometry classes +* Minor fixes and updates in `exchange` module +* Documentation updates +* Added volume support to dict-based import and exports, i.e. cfg, yaml, json +* Updated CI configurations + * Added CircleCI support for automation of deployment to PyPI, Anaconda Cloud and Docker Hub + * Updated TravisCI support to use tox and tox environments + * Updated AppVeyor support to generate Cython-compiled versions of geomdl as artifacts +* Added support for star imports, i.e. `from geomdl import *` + ## v5.0b4 released on 2018-12-31 * Added `abstract.Geometry` and `abstract.SplineGeometry` classes diff --git a/geomdl/__init__.py b/geomdl/__init__.py index 91010c25..e1efda26 100644 --- a/geomdl/__init__.py +++ b/geomdl/__init__.py @@ -5,7 +5,7 @@ """ # Library version -__version__ = "5.0b4" +__version__ = "5.0b5" # Author and licence __author__ = "Onur Rauf Bingol"