From 4c516ff1b97d2f00a32f243ab856179c3d0f6f16 Mon Sep 17 00:00:00 2001 From: Jordan Borean Date: Thu, 9 Nov 2023 16:33:03 +1000 Subject: [PATCH] Bump new version after release --- .github/workflows/ci.yml | 4 ++-- CHANGELOG.md | 2 ++ pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f4871e..b3069c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,7 +60,7 @@ jobs: - 3.9 - '3.10' - '3.11' - - '3.12.0-rc.1' + - '3.12' python-arch: - x86 - x64 @@ -81,7 +81,7 @@ jobs: - os: windows-2019 python-version: '3.10' - os: windows-2019 - python-version: '3.12.0-rc.1' + python-version: '3.12' steps: - uses: actions/checkout@v3 diff --git a/CHANGELOG.md b/CHANGELOG.md index cb68d41..eaeabb0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog +## 1.12.1 - TBD + ## 1.12.0 - 2023-11-09 * Added the `DiskFull` error and message for the NTSTATUS code `0xC000007F` - https://github.com/jborean93/smbprotocol/pull/245 diff --git a/pyproject.toml b/pyproject.toml index 40d67b5..0bb608e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "smbprotocol" -version = "1.12.0" +version = "1.12.1" description = "Interact with a server using the SMB 2/3 Protocol" readme = "README.md" requires-python = ">=3.7"