From f65242ef62b4a32e32021f973c63dd11a254c833 Mon Sep 17 00:00:00 2001 From: Barbara Kemper Date: Fri, 7 Jun 2024 13:20:50 -0400 Subject: [PATCH] Create v1.14.0-rc release candidate. --- CHANGELOG.md | 6 ++++++ doc/source/whatsnew.rst | 7 +++++++ setup.py | 2 +- swat/__init__.py | 2 +- 4 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff79e5b7..8a78b5a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Change Log +## 1.14.0 - 2024-06-07 + +- Add support for Proof Key for Code Exchange (PKCE) +- Update TK subsystem +- Wheel and Conda files for Python releases < 3.7 are no longer created + ## 1.13.3 - 2023-08-31 - add wheel files for macosx_11_0_arm64 diff --git a/doc/source/whatsnew.rst b/doc/source/whatsnew.rst index b3b0f879..38797e07 100644 --- a/doc/source/whatsnew.rst +++ b/doc/source/whatsnew.rst @@ -8,6 +8,13 @@ What’s New This document outlines features and improvements from each release. +1.14.0 (June 7, 2024) +--------------------- + +- Add support for Proof Key for Code Exchange (PKCE) +- Update TK subsystem +- Wheel and Conda files for Python releases < 3.7 are no longer created + 1.13.3 (August 31, 2023) ------------------------ diff --git a/setup.py b/setup.py index 0bc14328..79060d0e 100755 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ def get_file(fname): setup( zip_safe=False, name='swat', - version='1.13.4-dev', + version='1.14.0', description='SAS Scripting Wrapper for Analytics Transfer (SWAT)', long_description=get_file('README.md'), long_description_content_type='text/markdown', diff --git a/swat/__init__.py b/swat/__init__.py index cb2d2400..f2cb99d5 100644 --- a/swat/__init__.py +++ b/swat/__init__.py @@ -93,5 +93,5 @@ # SAS Formatter from .formatter import SASFormatter # noqa: E402 -__version__ = '1.13.4-dev' +__version__ = '1.14.0' __tk_version__ = None