From 5a31a072dc11f2c0b45af67da7d4362818d994df Mon Sep 17 00:00:00 2001 From: Jirka B Date: Tue, 19 Nov 2024 17:35:25 +0100 Subject: [PATCH] releasing `0.11.9` --- .github/workflows/release-pypi.yml | 4 +++- CHANGELOG.md | 2 +- src/lightning_utilities/__about__.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-pypi.yml b/.github/workflows/release-pypi.yml index a4688e0f..3b3c2888 100644 --- a/.github/workflows/release-pypi.yml +++ b/.github/workflows/release-pypi.yml @@ -7,6 +7,8 @@ on: # Trigger the workflow on push or pull request, but only for the master bran tags: ["v?[0-9]+.[0-9]+.[0-9]+"] release: types: [published] + pull_request: + branches: [main] defaults: run: @@ -25,7 +27,7 @@ jobs: - name: Set up Python 🐍 uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: "3.9" - name: Prepare build env. run: pip install -r ./requirements/gha-package.txt diff --git a/CHANGELOG.md b/CHANGELOG.md index f13f9c77..f5f03b34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --- -## [Unreleased] - 2024-MM-DD +## [0.11.9] - 2024-11-19 ### Changed diff --git a/src/lightning_utilities/__about__.py b/src/lightning_utilities/__about__.py index 3a0a0382..024e1ebc 100644 --- a/src/lightning_utilities/__about__.py +++ b/src/lightning_utilities/__about__.py @@ -1,6 +1,6 @@ import time -__version__ = "0.11.8" +__version__ = "0.11.9" __author__ = "Lightning AI et al." __author_email__ = "pytorch@lightning.ai" __license__ = "Apache-2.0"