From c31616cba871e66c257df511585298b3fd907ef4 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Thu, 10 Nov 2016 17:25:12 -0500 Subject: [PATCH] Bump the version to 0.6.5 --- Makefile | 4 +++- setup.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 48fb8080..910b110d 100644 --- a/Makefile +++ b/Makefile @@ -51,5 +51,7 @@ sdist: clean compile test sdist-libuv $(PYTHON) setup.py sdist -release: distclean compile test sdist-libuv +# Don't change "clean" to "distclean"! Otherwise "clean-libuv" will +# only be called once, which will produce a broken sdist. +release: clean compile test sdist-libuv $(PYTHON) setup.py sdist bdist_wheel upload diff --git a/setup.py b/setup.py index f8e885c0..2937ff00 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ from setuptools.command.build_ext import build_ext -VERSION = '0.6.1' +VERSION = '0.6.5' CFLAGS = ['-O2'] LIBUV_DIR = os.path.join(os.path.dirname(__file__), 'vendor', 'libuv')