From 5fe95b74dfd53186e74ba7d9b85ca4c27f0d9c09 Mon Sep 17 00:00:00 2001 From: Manuel Pariente Date: Thu, 12 Oct 2023 22:44:41 +0200 Subject: [PATCH] Release v0.7.0 --- CHANGELOG.md | 5 +++++ README.md | 9 ++++++--- asteroid/__init__.py | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f68329d3f..1fffa15f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Fixed + +## [0.7.0] - 2023-10-12 +### Breaking +Upgrade to Pytorch 2.0+ and PyTorch-Lightning 2.0+ + ## [0.6.1] - 2023-07-19 ### Breaking diff --git a/README.md b/README.md index 27db32b54..9b13d7919 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![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) [![codecov][codecov-badge]][codecov] [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) -[![Documentation Status](https://img.shields.io/badge/docs-0.5.1-blue)](https://asteroid.readthedocs.io/en/v0.5.1/) +[![Documentation Status](https://img.shields.io/badge/docs-0.7.0-blue)](https://asteroid.readthedocs.io/en/v0.7.0/) [![Latest Docs Status](https://github.com/asteroid-team/asteroid/workflows/Latest%20docs/badge.svg)](https://asteroid-team.github.io/asteroid/) @@ -37,14 +37,17 @@ and ask questions / suggest new features there as well! Asteroid is intended to be a __community-based project__ so hop on and help us! ## Contents +- [Contents](#contents) - [Installation](#installation) - [Tutorials](#tutorials) - [Running a recipe](#running-a-recipe) - [Available recipes](#available-recipes) - [Supported datasets](#supported-datasets) - [Pretrained models](#pretrained-models) -- [Calls for contributions](#contributing) -- [Citing us](#citing) +- [Contributing](#contributing) +- [TensorBoard visualization](#tensorboard-visualization) +- [Guiding principles](#guiding-principles) +- [Citing Asteroid](#citing-asteroid) ## Installation ([↑up to contents](#contents)) diff --git a/asteroid/__init__.py b/asteroid/__init__.py index 0aa756a22..4660825ee 100644 --- a/asteroid/__init__.py +++ b/asteroid/__init__.py @@ -4,7 +4,7 @@ from .utils import deprecation_utils, torch_utils # noqa project_root = str(pathlib.Path(__file__).expanduser().absolute().parent.parent) -__version__ = "0.7.0dev" +__version__ = "0.7.0" def show_available_models():