Skip to content

Commit

Permalink
V2.9.0 (#859)
Browse files Browse the repository at this point in the history
* update changelog for release

* bump version to next patch level for nightly releases

* update tests; deploy workflow
  • Loading branch information
oscarlevin authored Nov 7, 2024
1 parent 43352e0 commit 7a68e57
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
git commit -m "update changelog for release"
git add pyproject.toml
git commit -m "bump version to next patch level for nightly releases"
git tag -f ${{ env.VERSION }}
git tag -f v${{ env.VERSION }}
git push -f --set-upstream origin ${{ env.VERSION }}
gh pr create --fill
gh pr merge -s -d -t "Update changelog and bump version to next patch level for nightly releases"
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
poetry-version: ["1.5.1"]
os: [ubuntu-latest, windows-latest]
exclude:
Expand All @@ -44,6 +44,8 @@ jobs:
python-version: "3.10"
- os: windows-latest
python-version: "3.11"
- os: windows-latest
python-version: "3.12"

runs-on: ${{ matrix.os }}

Expand All @@ -55,8 +57,8 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install apt packages (Linux with python 3.11 only)
if: runner.os == 'Linux' && matrix.python-version == '3.11'
- name: Install apt packages (Linux with python 3.13 only)
if: runner.os == 'Linux' && matrix.python-version == '3.13'

run: |
sudo apt update
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ Instructions: Add a subsection under `[UNRELEASED]` for additions, fixes, change

## [UNRELEASED]


## [2.9.0] - 2024-11-07

### Added

- Support for generating prefigure graphics.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# ----------------
[tool.poetry]
name = "pretext"
version = "2.8.3"
version = "2.9.1"
description = "A package to author, build, and deploy PreTeXt projects."
readme = "README.md"
homepage = "https://pretextbook.org"
Expand Down

0 comments on commit 7a68e57

Please sign in to comment.