Skip to content

Commit

Permalink
update changelog and version
Browse files Browse the repository at this point in the history
  • Loading branch information
speediedan committed Jun 11, 2022
1 parent d1df5e4 commit cd230ad
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,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/).

## [0.1.6] - 2022-06-10

### Added

- Enable use of untested strategies with new flag and user warning
- Update various dependency minimum versions
- Minor example logging update

### Fixed
- minor privacy policy link update
- bump omegaconf version requirement due to omegaconf bug

### Changed

### Deprecated


## [0.1.5] - 2022-06-02

### Added
Expand Down
5 changes: 4 additions & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ date-released: 2022-02-04
authors:
- family-names: "Dale"
given-names: "Dan"
version: 0.1.5
version: 0.1.6
identifiers:
- description: "Finetuning Scheduler (all versions)"
type: doi
Expand All @@ -23,6 +23,9 @@ identifiers:
- description: "Finetuning Scheduler (v0.1.4)"
type: doi
value: 10.5281/zenodo.6578519
- description: "Finetuning Scheduler (v0.1.5)"
type: doi
value: 10.5281/zenodo.6608817
license: "Apache-2.0"
url: "https://finetuning-scheduler.readthedocs.io/"
repository-code: "https://github.com/speediedan/finetuning-scheduler"
Expand Down
6 changes: 3 additions & 3 deletions finetuning_scheduler/__about__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import time

_this_year = time.strftime("%Y")
__version__ = "0.1.5"
__version__ = "0.1.6"
__author__ = "Dan Dale"
__author_email__ = "danny.dale@gmail.com"
__license__ = "Apache-2.0"
__copyright__ = f"Copyright (c) 2021-{_this_year}, {__author__}"
__homepage__ = "https://github.com/speediedan/finetuning-scheduler"
__docs_url__ = "https://finetuning-scheduler.readthedocs.io/en/latest/"
__docs_url__ = "https://finetuning-scheduler.readthedocs.io/en/stable/"
# this has to be simple string, see: https://github.com/pypa/twine/issues/522
__docs__ = "A PyTorch Lightning extension that enhances model experimentation with flexible finetuning schedules."
__long_docs__ = """
Expand All @@ -31,7 +31,7 @@
Documentation
-------------
- https://finetuning-scheduler.readthedocs.io/en/stable/
- https://finetuning-scheduler.readthedocs.io/en/0.1.5/
- https://finetuning-scheduler.readthedocs.io/en/0.1.6/
"""

__all__ = ["__author__", "__author_email__", "__copyright__", "__docs__", "__homepage__", "__license__", "__version__"]

0 comments on commit cd230ad

Please sign in to comment.