Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,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
Expand Down
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -20,14 +22,15 @@ 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

### Changed

- 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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pythonbible/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading