From b20fac53d8d612ac30bc7092205661ca8d1e0b03 Mon Sep 17 00:00:00 2001 From: Guido Imperiale Date: Sun, 27 May 2018 01:12:50 +0100 Subject: [PATCH] Release v0.1.0 --- doc/whats-new.rst | 2 +- setup.py | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/doc/whats-new.rst b/doc/whats-new.rst index bdffe3e..57314c8 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -12,7 +12,7 @@ What's New .. _whats-new.0.1.0: -v0.1.0 (unreleased) +v0.1.0 (2018-05-27) ------------------- Initial release. \ No newline at end of file diff --git a/setup.py b/setup.py index 1bcf3d8..33dee2e 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ MAJOR = 0 MINOR = 1 MICRO = 0 -ISRELEASED = False +ISRELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) QUALIFIER = '' DISTNAME = 'pyscenarios' @@ -39,9 +39,7 @@ TESTS_REQUIRE = ['pytest >= 3.1'] DESCRIPTION = "Python Monte Carlo Scenario Generator" -LONG_DESCRIPTION = """ - -""" # noqa +LONG_DESCRIPTION = DESCRIPTION # Code to extract and write the version copied from pandas. # Used under the terms of pandas's license, see licenses/PANDAS_LICENSE.