Skip to content

Commit

Permalink
Bump version and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
eonu committed Dec 27, 2022
1 parent 5324661 commit 3e5489b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 7 deletions.
24 changes: 19 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,48 @@
# Changelog

## [1.0.0](https://github.com/eonu/torch-fsdd/releases/tag/v1.0.0)

#### Major changes

- Rework `setup.py` to use package extras and fetch metadata from `__init__.py`. ([#15](https://github.com/eonu/torch-fsdd/pull/15))
- Add `dev` package extra for development (including running docs and tests). ([#15](https://github.com/eonu/torch-fsdd/pull/15))

#### Minor changes

- Switch to CircleCI. ([#15](https://github.com/eonu/torch-fsdd/pull/15))
- Add CI for Python versions (3.6 - 3.10). ([#15](https://github.com/eonu/torch-fsdd/pull/15))
- Fix `Jinja2<3.1` version for RTD (see [readthedocs/readthedocs.org/issues/9038](https://github.com/readthedocs/readthedocs.org/issues/9038)). ([#15](https://github.com/eonu/torch-fsdd/pull/15))
- Fix broken ReadTheDocs link — thanks @black-puppydog. ([#13](https://github.com/eonu/torch-fsdd/pull/13))

## [0.1.2](https://github.com/eonu/torch-fsdd/releases/tag/v0.1.2)

### Major changes
#### Major changes

- Don't allow zero `test_size` (see #7). ([#11](https://github.com/eonu/torch-fsdd/pull/11))
- Change `extra_requires` to `extras_require` in `setup.py`. ([#9](https://github.com/eonu/torch-fsdd/pull/9))<br/>(this is why `pip install torchfsdd[torch]` didn't work!)

### Minor changes
#### Minor changes

- Bump package development status to beta. ([#10](https://github.com/eonu/torch-fsdd/pull/10))
- Swap `torch` and `torchaudio` links in `README.md`. ([#8](https://github.com/eonu/torch-fsdd/pull/8))

## [0.1.1](https://github.com/eonu/torch-fsdd/releases/tag/v0.1.1)

### Major changes
#### Major changes

- Add `torch` and `torchaudio` dependencies to `docs/requirements.txt`. ([#4](https://github.com/eonu/torch-fsdd/pull/4))
- Upgrade minimum package dependency versions: ([#3](https://github.com/eonu/torch-fsdd/pull/3))
- `torch` (>= 1.8)
- `torchaudio` (>= 0.8)
- `torchvision` (>= 0.9) - only used in tests and notebooks

### Minor changes
#### Minor changes

- Remove platform-dependent `torch`, `torchaudio` and `torchvision` installation for tests. ([#1](https://github.com/eonu/torch-fsdd/pull/1))
- Move Travis badges to separate `README.md` section. ([#2](https://github.com/eonu/torch-fsdd/pull/2))

## [0.1.0](https://github.com/eonu/torch-fsdd/releases/tag/v0.1.0)

### Major changes
#### Major changes

Nothing, initial release!
2 changes: 1 addition & 1 deletion lib/torchfsdd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from importlib import metadata

__name__ = "torchfsdd"
__version__ = "0.1.2"
__version__ = "1.0.0"
__author__ = "Edwin Onuonga"
__email__ = "[email protected]"
__copyright__ = f"2019-2023, {__author__}"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def load_meta(meta):
package_dir = {'': 'lib'},
packages = find_packages(where='lib'),
classifiers = [
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand Down

0 comments on commit 3e5489b

Please sign in to comment.