diff --git a/CHANGELOG.md b/CHANGELOG.md index bca841d..daf0957 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). +## [2.1.4] - 2024-02-02 + +### Added + +- Support for Lightning ``2.1.4`` + +### Changed + +- updated reference to renamed `FSDPPrecision` +- bumped `sphinx` requirement to `>5.0,<6.0` + +### Deprecated + +- removed deprecated lr `verbose` init param usage +- removed deprecated `tensorboard.dev` references + + ## [2.1.3] - 2023-12-21 ### Added diff --git a/CITATION.cff b/CITATION.cff index be9f805..dd2fbe6 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -98,6 +98,9 @@ identifiers: - description: "Fine-Tuning Scheduler (v2.1.2)" type: doi value: 10.5281/zenodo.10412826 + - description: "Fine-Tuning Scheduler (v2.1.3)" + type: doi + value: 10.5281/zenodo.10420340 license: "Apache-2.0" url: "https://finetuning-scheduler.readthedocs.io/" diff --git a/requirements/base.txt b/requirements/base.txt index e49ed67..e37746d 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,4 +1,4 @@ -lightning>=2.1.0,<2.1.4 +lightning>=2.1.0,<2.1.5 # the below is uncommented when master is targeting a specific pl dev master commit #git+https://github.com/Lightning-AI/lightning.git@9f173241195450fd8e39a01f28ae2ec94371cd15#egg=lightning torch>=1.12.0 diff --git a/requirements/standalone_base.txt b/requirements/standalone_base.txt index 1a83fd4..d238ff3 100644 --- a/requirements/standalone_base.txt +++ b/requirements/standalone_base.txt @@ -1,4 +1,4 @@ -pytorch-lightning>=2.1.0,<2.1.4 +pytorch-lightning>=2.1.0,<2.1.5 # the below is uncommented when master is targeting a specific pl dev master commit #git+https://github.com/Lightning-AI/pytorch-lightning.git@9f173241195450fd8e39a01f28ae2ec94371cd15#egg=pytorch-lightning torch>=1.12.0 diff --git a/src/finetuning_scheduler/__about__.py b/src/finetuning_scheduler/__about__.py index 63878d7..7d88afc 100644 --- a/src/finetuning_scheduler/__about__.py +++ b/src/finetuning_scheduler/__about__.py @@ -1,7 +1,7 @@ import time _this_year = time.strftime("%Y") -__version__ = "2.1.3" +__version__ = "2.1.4" __author__ = "Dan Dale" __author_email__ = "danny.dale@gmail.com" __license__ = "Apache-2.0"