summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Borzenkov <snaury@gmail.com>2020-09-22 12:03:52 +0300
committerAlexey Borzenkov <snaury@gmail.com>2020-09-22 12:03:52 +0300
commit084f0a412cee00dacbbd20a18758a04da07dc29e (patch)
tree2a6449bddc18b5060555f6e6f98ad221cc8b6495
parentf49eb7be1cb43d53a80c2447a419d69db377c825 (diff)
downloadgreenlet-release-0.4.17.tar.gz
Prepare to release greenlet 0.4.17release-0.4.17
-rw-r--r--MANIFEST.in1
-rw-r--r--NEWS4
-rw-r--r--appveyor.yml2
-rw-r--r--greenlet.h2
-rwxr-xr-xsetup.py4
5 files changed, 8 insertions, 5 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 8cd3d1e..23d388f 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -51,6 +51,7 @@ include slp_platformselect.h
include tests/__init__.py
include tests/_test_extension.c
include tests/_test_extension_cpp.cpp
+include tests/test_contextvars.py
include tests/test_cpp.py
include tests/test_extension_interface.py
include tests/test_gc.py
diff --git a/NEWS b/NEWS
index 60e7ea4..012491c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+0.4.17
+======
+- Support for PEP 567 ContextVars
+
0.4.16
===========
- Support for DEC Alpha architecture
diff --git a/appveyor.yml b/appveyor.yml
index 527c488..0dc45df 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,4 +1,4 @@
-version: 0.4.16.{build}
+version: 0.4.17.{build}
environment:
global:
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
diff --git a/greenlet.h b/greenlet.h
index 635e2db..d68160b 100644
--- a/greenlet.h
+++ b/greenlet.h
@@ -11,7 +11,7 @@
extern "C" {
#endif
-#define GREENLET_VERSION "0.4.16"
+#define GREENLET_VERSION "0.4.17"
#if PY_VERSION_HEX >= 0x030700A3
# define GREENLET_USE_EXC_INFO
diff --git a/setup.py b/setup.py
index e1aa302..3995bc4 100755
--- a/setup.py
+++ b/setup.py
@@ -70,11 +70,9 @@ from my_build_ext import build_ext
setup(
name="greenlet",
- version='0.4.16',
+ version='0.4.17',
description='Lightweight in-process concurrent programming',
long_description=readfile("README.rst"),
- maintainer="Alexey Borzenkov",
- maintainer_email="snaury@gmail.com",
url="https://github.com/python-greenlet/greenlet",
license="MIT License",
platforms=['any'],