From 1209e13e5f984503d257aaaf342cc96bff6b955f Mon Sep 17 00:00:00 2001 From: Jirka Date: Thu, 29 Jun 2023 19:30:55 +0200 Subject: [PATCH] releasing 0.9.0 --- CHANGELOG.md | 16 +++++++++++++--- src/lightning_utilities/__about__.py | 2 +- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6352cd8..f69c465c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,18 +6,28 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.8.0] - 2023-03-10 +## [0.9.0] - 2023-06-29 ### Added -- Added requirements parser ([#107](https://github.com/Lightning-AI/utilities/pull/107)) -- Added workflow for checking markdown links ([#81](https://github.com/Lightning-AI/utilities/pull/81)) +- docs: fetch all external resources for building docs ([#142](https://github.com/Lightning-AI/utilities/pull/142)) +### Changed + +- CI: allow splitting docs's tests and make ([#141](https://github.com/Lightning-AI/utilities/pull/141)) ### Fixed +- Fixed - do not erase function types in decorators ([#135](https://github.com/Lightning-AI/utilities/pull/135)) - CI: fix passing install flags in package check ([#137](https://github.com/Lightning-AI/utilities/pull/137)) +## [0.8.0] - 2023-03-10 + +### Added + +- Added requirements parser ([#107](https://github.com/Lightning-AI/utilities/pull/107)) +- Added workflow for checking markdown links ([#81](https://github.com/Lightning-AI/utilities/pull/81)) + ## [0.7.1] - 2023-02-23 diff --git a/src/lightning_utilities/__about__.py b/src/lightning_utilities/__about__.py index 20a10cb7..bb18a8cb 100644 --- a/src/lightning_utilities/__about__.py +++ b/src/lightning_utilities/__about__.py @@ -1,6 +1,6 @@ import time -__version__ = "0.9.0dev" +__version__ = "0.9.0" __author__ = "Lightning AI et al." __author_email__ = "pytorch@lightning.ai" __license__ = "Apache-2.0"