Skip to content

Bump version to v0.7.3 #506

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/merge_stage_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: [3.6, 3.8, 3.9]
python-version: [3.8, 3.9]
torch: [1.8.1]
include:
- torch: 1.8.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ MMGeneration is a powerful toolkit for generative models, especially for GANs no

## Changelog

v0.7.2 was released on 13/09/2022. Please refer to [changelog.md](docs/en/changelog.md) for details and release history.
v0.7.3 was released on 14/04/2023. Please refer to [changelog.md](docs/en/changelog.md) for details and release history.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion README_zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ MMGeneration 是一个基于 PyTorch 和[MMCV](https://github.com/open-mmlab/mmc

## 更新日志

v0.7.213/09/2022 发布。 关于细节和发布历史,请参考 [changelog.md](docs/zh_cn/changelog.md)。
v0.7.314/04/2023 发布。 关于细节和发布历史,请参考 [changelog.md](docs/zh_cn/changelog.md)。

## 安装

Expand Down
8 changes: 8 additions & 0 deletions docs/en/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,3 +146,11 @@
- Update limitation of MMCV's version (#397)
- Add Circle CI (#431)
- Update Chinese readme for `application.md` (#425)

## v0.7.3 (14/04/2023)

#### Fix bugs and Improvements

- Fix SiLU activation (#447)
- Support Perceptual Loss (#471)
- Fix tensor and index aren't on the same device error (#476)
2 changes: 1 addition & 1 deletion mmgen/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright (c) OpenMMLab. All rights reserved.
__version__ = '0.7.2'
__version__ = '0.7.3'


def parse_version_info(version_str):
Expand Down