From 228f2dd73d927d322c6e18bbdcba64366cb2ab55 Mon Sep 17 00:00:00 2001 From: Jordan Borean Date: Wed, 6 Sep 2023 05:07:30 +1000 Subject: [PATCH] Update changelog and added Python 3.12 to testing --- .github/workflows/ci.yml | 3 +++ CHANGELOG.md | 4 +++- pyproject.toml | 5 +++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 814a931d..ca210f61 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,6 +63,7 @@ jobs: - 3.9 - '3.10' - '3.11' + - '3.12.0-rc.1' python-arch: - x86 - x64 @@ -82,6 +83,8 @@ jobs: python-version: 3.9 - os: windows-2019 python-version: '3.10' + - os: windows-2019 + python-version: '3.12.0-rc.1' steps: - uses: actions/checkout@v3 diff --git a/CHANGELOG.md b/CHANGELOG.md index d2560f88..562cd2c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,10 @@ # Changelog -## 1.10.2 - TBD +## 1.11.0 - TBD * Fix up pre authenticated session id lookups that were failing with Linux ksmbd +* Removes `logging.NullHandler()` being set in the root `smbprotocol` namespace +* Adds basic support for remote to local and vice versa file operations with `smbclient.shutil.copytree` ## 1.10.1 - 2022-11-14 diff --git a/pyproject.toml b/pyproject.toml index 95cf7d22..75cd0ad5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "smbprotocol" -version = "1.10.2" +version = "1.11.0" description = "Interact with a server using the SMB 2/3 Protocol" readme = "README.md" requires-python = ">=3.7" @@ -23,7 +23,8 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11" + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12" ] dependencies = [ "cryptography >= 2.0",