From 50d3a8e96461df768caeddc5ed5e8c5d1114dbce Mon Sep 17 00:00:00 2001 From: Jacob Alexander Date: Fri, 20 Nov 2020 11:50:09 -0800 Subject: [PATCH] Preparing for v1.0.0 release --- CHANGELOG.md | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f27c2d..cd2f120 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v1.0.0 (2020-11-20) +- Validated Python 3.9 (3.7 and 3.8 are also supported) +- Updated package to include LICENSE file +- Updated examples to avoid run_forever() as ctrl+c will not work +- Adding xfail to pytest cases which fail sometimes due to network port oddities (please use asyncio, as Python handles things more gracefully) + ## v1.0.0b2 (2020-06-14) - Minimum capnproto version is now 0.8.0 - Added asyncio ssl calculator test diff --git a/setup.py b/setup.py index 4e9ff85..490dd44 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ _this_dir = os.path.dirname(__file__) MAJOR = 1 MINOR = 0 MICRO = 0 -TAG = 'b2' +TAG = '' VERSION = '%d.%d.%d%s' % (MAJOR, MINOR, MICRO, TAG)