From 7e70b54831b43b8ead7c3632bf289b20ea3d810c Mon Sep 17 00:00:00 2001 From: Guido Imperiale Date: Mon, 29 Apr 2019 14:36:45 +0100 Subject: [PATCH] Release v0.2.0 --- doc/whats-new.rst | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/whats-new.rst b/doc/whats-new.rst index 2182008..c517a00 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -5,13 +5,13 @@ What's New .. _whats-new.0.2.0: -v0.2.0 (unreleased) +v0.2.0 (2019-04-29) ------------------- - Type annotations - 'rng' parameter in copula functions is now case insensitive - Work around regression in IT copula with dask >= 1.1 - (` dask#4739>`) + (`dask#4739 `_) - Smaller binary package; simplified setup - Explicit CI tests for Windows, Python 3.5.0, and Python 3.7 - Mandatory flake8 and mypy in CI diff --git a/setup.py b/setup.py index 5769f3d..54b99ce 100644 --- a/setup.py +++ b/setup.py @@ -6,9 +6,9 @@ MAJOR = 0 -MINOR = 1 +MINOR = 2 MICRO = 0 -ISRELEASED = False +ISRELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) QUALIFIER = '' DISTNAME = 'pyscenarios'