Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update changelog and added Python 3.12 to testing #238

Merged
merged 1 commit into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ jobs:
- 3.9
- '3.10'
- '3.11'
- '3.12.0-rc.1'
python-arch:
- x86
- x64
Expand All @@ -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
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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",
Expand Down