From dffb498fc134e26e78e6425312b24d34f75f8a50 Mon Sep 17 00:00:00 2001 From: Ben Avrahami Date: Sat, 2 Mar 2024 19:54:48 +0200 Subject: [PATCH 1/2] ready for 1.4.0 --- .github/workflows/test.yml | 2 +- CHANGELOG.md | 4 +++- envolved/_version.py | 2 +- pyproject.toml | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 76916c9..002e2b4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: unittest: strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] # format: 3.7, 3.8, 3.9 + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev"] # format: 3.7, 3.8, 3.9 platform: [ubuntu-latest, macos-latest, windows-latest] fail-fast: false runs-on: ${{ matrix.platform }} diff --git a/CHANGELOG.md b/CHANGELOG.md index dc9b6b3..83eea50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,11 @@ # envolved Changelog -## NEXT +## 1.4.0 ### Deprecated * this is the last release to support python 3.7 ### Changed * `BoolParser` is now a subclass of `LookupParser` +### Added +* added testing for python 3.13 ### Fixed * environment sys-hooks can now handle invalid arguments gracefully ### Internal diff --git a/envolved/_version.py b/envolved/_version.py index 67bc602..3e8d9f9 100644 --- a/envolved/_version.py +++ b/envolved/_version.py @@ -1 +1 @@ -__version__ = "1.3.0" +__version__ = "1.4.0" diff --git a/pyproject.toml b/pyproject.toml index d7c5fd1..b28b38a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "envolved" -version = "1.3.0" +version = "1.4.0" description = "" authors = ["ben avrahami "] license = "MIT" From 15ab17625c1da62252efaf71ffe1110050af940b Mon Sep 17 00:00:00 2001 From: Ben Avrahami Date: Sat, 2 Mar 2024 20:55:30 +0200 Subject: [PATCH 2/2] not ready for 3.13 yet --- .github/workflows/test.yml | 2 +- CHANGELOG.md | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 002e2b4..76916c9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: unittest: strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev"] # format: 3.7, 3.8, 3.9 + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] # format: 3.7, 3.8, 3.9 platform: [ubuntu-latest, macos-latest, windows-latest] fail-fast: false runs-on: ${{ matrix.platform }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 83eea50..9eab022 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,6 @@ * this is the last release to support python 3.7 ### Changed * `BoolParser` is now a subclass of `LookupParser` -### Added -* added testing for python 3.13 ### Fixed * environment sys-hooks can now handle invalid arguments gracefully ### Internal