diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 50ebd70..c83c00d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,6 +11,7 @@ permissions: jobs: build-and-publish: runs-on: ubuntu-latest + environment: pypi steps: - name: Checkout uses: actions/checkout@v5 @@ -18,7 +19,7 @@ jobs: fetch-depth: 0 - name: Install uv - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 - name: Ensure Python (uses your .python-version / requires-python) run: uv python install diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cdca88..f3e5448 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.0] - 2024-06-10 + ### Added - Added Python 3.14 to the list of supported Python versions. @@ -20,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed - Removed Python 3.8 from the list of supported Python versions. +- Removed Python 3.9 from the list of supported Python versions. ## [0.13.1] - 2024-05-21 @@ -27,7 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Modified max verses dictionary with chapter/verse info from multiple versions/translations. -## [0.13.0] = 2024-05-21 +## [0.13.0] - 2024-05-21 ### Added @@ -151,7 +154,8 @@ The goal of this release was to address [Issue #90], and to make things related ## [0.0.1] - 2020-10-08 -[unreleased]: https://github.com/avendesora/pythonbible/compare/v0.13.1...HEAD +[unreleased]: https://github.com/avendesora/pythonbible/compare/v0.14.0...HEAD +[0.14.0]: https://github.com/avendesora/pythonbible/compare/v0.13.1...v0.14.0 [0.13.1]: https://github.com/avendesora/pythonbible/compare/v0.13.0...v0.13.1 [0.13.0]: https://github.com/avendesora/pythonbible/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/avendesora/pythonbible/compare/v0.11.1...v0.12.0 diff --git a/README.md b/README.md index 4d0d7eb..c2eac0e 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ The pythonbible library serves several purposes related to the Christian Bible a Supported Python Versions - + diff --git a/docs/source/conf.py b/docs/source/conf.py index 742d738..73642d6 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -23,7 +23,7 @@ author = "Nathan Patton" # The full version, including alpha/beta/rc tags -release = "0.13.1" +release = "0.14.0" # -- General configuration --------------------------------------------------- diff --git a/pythonbible/__init__.py b/pythonbible/__init__.py index 10bb937..27cb78d 100644 --- a/pythonbible/__init__.py +++ b/pythonbible/__init__.py @@ -8,7 +8,7 @@ from __future__ import annotations -__version__ = "0.13.1" +__version__ = "0.14.0" from .bible.bible import Bible from .book_groups import BOOK_GROUPS