diff --git a/docs/whats-new.rst b/docs/whats-new.rst index 1a61a07..9ba5e48 100644 --- a/docs/whats-new.rst +++ b/docs/whats-new.rst @@ -5,6 +5,18 @@ What's New Unreleased ---------- +v0.3.6 +------ + +Enhancements +~~~~~~~~~~~~ +* Implemented "nearby wet-dry approach" from RAINLINK (by maxmargraf in PR #113) +* Updated ITU recommendation for k-R power law to version from 2005 (by nblettner in PR #110) + +Maintenance +~~~~~~~~~~~~ +* remove parameters from model.compile() in wet-dry CNN method (by cchwala in PR #112) + v0.3.5 ------ diff --git a/setup.py b/setup.py index 238a765..fc4e3ee 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def read(fname): setup( name = "pycomlink", - version = "0.3.5", + version = "0.3.6", author = "Christian Chwala", author_email = "christian.chwala@kit.edu", description = ("Python tools for CML (commercial microwave link) data processing"), @@ -28,7 +28,7 @@ def read(fname): keywords = "microwave links precipitation radar cml", url = "https://github.com/pycomlink/pycomlink", download_url = ( - "https://github.com/pycomlink/pycomlink/archive/0.3.5.tar.gz"), + "https://github.com/pycomlink/pycomlink/archive/0.3.6.tar.gz"), packages=find_packages(exclude=['test']), include_package_data=True, long_description=read('README.md'),