Skip to content

Commit 8004297

Browse files
authored
Update version to 0.14.0 (#214)
* update changelog * bump version * bump version * remove python 3.9 support from readme * update release workflow to run in the "pypi" environment
1 parent ba3fc6d commit 8004297

5 files changed

Lines changed: 11 additions & 6 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@ permissions:
1111
jobs:
1212
build-and-publish:
1313
runs-on: ubuntu-latest
14+
environment: pypi
1415
steps:
1516
- name: Checkout
1617
uses: actions/checkout@v5
1718
with:
1819
fetch-depth: 0
1920

2021
- name: Install uv
21-
uses: astral-sh/setup-uv@v6
22+
uses: astral-sh/setup-uv@v7
2223

2324
- name: Ensure Python (uses your .python-version / requires-python)
2425
run: uv python install

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.14.0] - 2024-06-10
11+
1012
### Added
1113

1214
- Added Python 3.14 to the list of supported Python versions.
@@ -20,14 +22,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2022
### Removed
2123

2224
- Removed Python 3.8 from the list of supported Python versions.
25+
- Removed Python 3.9 from the list of supported Python versions.
2326

2427
## [0.13.1] - 2024-05-21
2528

2629
### Changed
2730

2831
- Modified max verses dictionary with chapter/verse info from multiple versions/translations.
2932

30-
## [0.13.0] = 2024-05-21
33+
## [0.13.0] - 2024-05-21
3134

3235
### Added
3336

@@ -151,7 +154,8 @@ The goal of this release was to address [Issue #90], and to make things related
151154

152155
## [0.0.1] - 2020-10-08
153156

154-
[unreleased]: https://github.com/avendesora/pythonbible/compare/v0.13.1...HEAD
157+
[unreleased]: https://github.com/avendesora/pythonbible/compare/v0.14.0...HEAD
158+
[0.14.0]: https://github.com/avendesora/pythonbible/compare/v0.13.1...v0.14.0
155159
[0.13.1]: https://github.com/avendesora/pythonbible/compare/v0.13.0...v0.13.1
156160
[0.13.0]: https://github.com/avendesora/pythonbible/compare/v0.12.0...v0.13.0
157161
[0.12.0]: https://github.com/avendesora/pythonbible/compare/v0.11.1...v0.12.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The pythonbible library serves several purposes related to the Christian Bible a
3333
</tr>
3434
<tr>
3535
<td>Supported Python Versions</td>
36-
<td><a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-blue?logo=python&logoColor=lightgray"></a></td>
36+
<td><a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-blue?logo=python&logoColor=lightgray"></a></td>
3737
</tr>
3838
</table>
3939

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = "Nathan Patton"
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = "0.13.1"
26+
release = "0.14.0"
2727

2828

2929
# -- General configuration ---------------------------------------------------

pythonbible/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
from __future__ import annotations
1010

11-
__version__ = "0.13.1"
11+
__version__ = "0.14.0"
1212

1313
from .bible.bible import Bible
1414
from .book_groups import BOOK_GROUPS

0 commit comments

Comments
 (0)