Skip to content

Commit

Permalink
Bump version to v1.0.0rc2. (#1084)
Browse files Browse the repository at this point in the history
  • Loading branch information
mzr1996 committed Oct 12, 2022
1 parent dfe0874 commit 31c67ff
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 5 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ The `1.x` branch works with **PyTorch 1.6+**.

## What's new

v1.0.0rc2 was released in 12/10/2022.

- Support Deit-3 backbone.
- Fix MMEngine version requirements.

v1.0.0rc1 was released in 30/9/2022.

- Support MViT, EdgeNeXt, Swin-Transformer V2, EfficientFormer and MobileOne.
Expand Down
5 changes: 5 additions & 0 deletions README_zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ MMClassification 是一款基于 PyTorch 的开源图像分类工具箱,是 [O

## 更新日志

2022/10/12 发布了 v1.0.0rc2 版本

- 支持了 Deit-3 主干网络
- 修复了 MMEngine 版本依赖问题

2022/9/30 发布了 v1.0.0rc1 版本

- 支持了 MViT,EdgeNeXt,Swin-Transformer V2,EfficientFormer,MobileOne 等主干网络。
Expand Down
5 changes: 3 additions & 2 deletions docker/serve/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ ARG CUDA="10.2"
ARG CUDNN="7"
FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel

ARG MMENGINE="0.2.0"
ARG MMCV="2.0.0rc1"
ARG MMCLS="1.0.0rc1"
ARG MMCLS="1.0.0rc2"

ENV PYTHONUNBUFFERED TRUE

Expand All @@ -26,7 +27,7 @@ RUN pip install torchserve torch-model-archiver
# MMLAB
ARG PYTORCH
ARG CUDA
RUN pip install mmengine
RUN pip install mmengine==${MMENGINE}
RUN ["/bin/bash", "-c", "pip install mmcv==${MMCV} -f https://download.openmmlab.com/mmcv/dist/cu${CUDA//./}/torch${PYTORCH}/index.html"]
RUN pip install mmcls==${MMCLS}

Expand Down
19 changes: 19 additions & 0 deletions docs/en/notes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## v1.0.0rc2(12/10/2022)

### New Features

- \[Feature\] Support DeiT3. ([#1065](https://github.com/open-mmlab/mmclassification/pull/1065))

### Improvements

- \[Enhance\] Update `analyze_results.py` for dev-1.x. ([#1071](https://github.com/open-mmlab/mmclassification/pull/1071))
- \[Enhance\] Get scores from inference api. ([#1070](https://github.com/open-mmlab/mmclassification/pull/1070))

### Bug Fixes

- \[Fix\] Update requirements. ([#1083](https://github.com/open-mmlab/mmclassification/pull/1083))

### Docs Update

- \[Docs\] Add 1x docs schedule. ([#1015](https://github.com/open-mmlab/mmclassification/pull/1015))

## v1.0.0rc1(30/9/2022)

### New Features
Expand Down
2 changes: 1 addition & 1 deletion docs/en/notes/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ and make sure you fill in all required information in the template.

| MMClassification version | MMCV version |
| :----------------------: | :--------------------: |
| 1.0.0rc1 (1.x) | mmcv>=2.0.0rc1 |
| 1.0.0rc2 (1.x) | mmcv>=2.0.0rc1 |
| 0.24.0 (master) | mmcv>=1.4.2, \<1.7.0 |
| 0.23.1 | mmcv>=1.4.2, \<1.6.0 |
| 0.22.1 | mmcv>=1.4.2, \<1.6.0 |
Expand Down
2 changes: 1 addition & 1 deletion docs/zh_CN/notes/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

| MMClassification version | MMCV version |
| :----------------------: | :--------------------: |
| 1.0.0rc1 (1.x) | mmcv>=2.0.0rc1 |
| 1.0.0rc2 (1.x) | mmcv>=2.0.0rc1 |
| 0.24.0 (master) | mmcv>=1.4.2, \<1.7.0 |
| 0.23.1 | mmcv>=1.4.2, \<1.6.0 |
| 0.22.1 | mmcv>=1.4.2, \<1.6.0 |
Expand Down
2 changes: 1 addition & 1 deletion mmcls/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) OpenMMLab. All rights reserved

__version__ = '1.0.0rc1'
__version__ = '1.0.0rc2'


def parse_version_info(version_str):
Expand Down

0 comments on commit 31c67ff

Please sign in to comment.