diff --git a/docs/whats-new.rst b/docs/whats-new.rst index eb076c0..c653cf0 100644 --- a/docs/whats-new.rst +++ b/docs/whats-new.rst @@ -6,6 +6,13 @@ Unreleased ---------- +v0.3.8 +------ + +Enhancements +~~~~~~~~~~~~ +* Extended implementation of "nearby wet-dry approach" and added some fixes and more test (by maxmargraf in PR #129) + v0.3.7 ------ diff --git a/setup.py b/setup.py index daaf0fd..1483c12 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def read(fname): setup( name = "pycomlink", - version = "0.3.7", + version = "0.3.8", 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.7.tar.gz"), + "https://github.com/pycomlink/pycomlink/archive/0.3.8.tar.gz"), packages=find_packages(exclude=['test']), include_package_data=True, long_description=read('README.md'),