Skip to content

Commit 5fe95b7

Browse files
committed
Release v0.7.0
1 parent fc13514 commit 5fe95b7

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
1212
### Fixed
1313

1414

15+
16+
## [0.7.0] - 2023-10-12
17+
### Breaking
18+
Upgrade to Pytorch 2.0+ and PyTorch-Lightning 2.0+
19+
1520
## [0.6.1] - 2023-07-19
1621

1722
### Breaking

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![Build Status](https://github.com/asteroid-team/asteroid/workflows/CI/badge.svg)](https://github.com/asteroid-team/asteroid/actions?query=workflow%3ACI+branch%3Amaster+event%3Apush)
88
[![codecov][codecov-badge]][codecov]
99
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
10-
[![Documentation Status](https://img.shields.io/badge/docs-0.5.1-blue)](https://asteroid.readthedocs.io/en/v0.5.1/)
10+
[![Documentation Status](https://img.shields.io/badge/docs-0.7.0-blue)](https://asteroid.readthedocs.io/en/v0.7.0/)
1111
[![Latest Docs Status](https://github.com/asteroid-team/asteroid/workflows/Latest%20docs/badge.svg)](https://asteroid-team.github.io/asteroid/)
1212

1313

@@ -37,14 +37,17 @@ and ask questions / suggest new features there as well!
3737
Asteroid is intended to be a __community-based project__
3838
so hop on and help us!
3939
## Contents
40+
- [Contents](#contents)
4041
- [Installation](#installation)
4142
- [Tutorials](#tutorials)
4243
- [Running a recipe](#running-a-recipe)
4344
- [Available recipes](#available-recipes)
4445
- [Supported datasets](#supported-datasets)
4546
- [Pretrained models](#pretrained-models)
46-
- [Calls for contributions](#contributing)
47-
- [Citing us](#citing)
47+
- [Contributing](#contributing)
48+
- [TensorBoard visualization](#tensorboard-visualization)
49+
- [Guiding principles](#guiding-principles)
50+
- [Citing Asteroid](#citing-asteroid)
4851

4952
## Installation
5053
([↑up to contents](#contents))

asteroid/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from .utils import deprecation_utils, torch_utils # noqa
55

66
project_root = str(pathlib.Path(__file__).expanduser().absolute().parent.parent)
7-
__version__ = "0.7.0dev"
7+
__version__ = "0.7.0"
88

99

1010
def show_available_models():

0 commit comments

Comments
 (0)