Skip to content

Commit 5c71eba

Browse files
Bump version to 1.0.1 (#1731)
* bump version to 1.0.1 * update changelog * update readme * Update changelog.md * update requirements --------- Co-authored-by: Ma Zerun <[email protected]>
1 parent 58a2243 commit 5c71eba

File tree

8 files changed

+38
-5
lines changed

8 files changed

+38
-5
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ https://github.com/open-mmlab/mmpretrain/assets/26739999/e4dcd3a2-f895-4d1b-a351
8686

8787
## What's new
8888

89+
🌟 v1.0.1 was released in 28/07/2023
90+
91+
Fix some bugs and enhance the codebase. Please refer to [changelog](https://mmpretrain.readthedocs.io/en/latest/notes/changelog.html) for more details.
92+
8993
🌟 v1.0.0 was released in 04/07/2023
9094

9195
- Support inference of more **multi-modal** algorithms, such as [**LLaVA**](./configs/llava/), [**MiniGPT-4**](./configs/minigpt4), [**Otter**](./configs/otter/), etc.

README_zh-CN.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ https://github.com/open-mmlab/mmpretrain/assets/26739999/e4dcd3a2-f895-4d1b-a351
8484

8585
## 更新日志
8686

87+
🌟 2023/7/28 发布了 v1.0.1 版本
88+
89+
修复部分 bug 和增强算法库功能。细节请参考 [更新日志](https://mmpretrain.readthedocs.io/zh_CN/latest/notes/changelog.html)
90+
8791
🌟 2023/7/4 发布了 v1.0.0 版本
8892

8993
- 支持更多**多模态**算法的推理, 例如 [**LLaVA**](./configs/llava/), [**MiniGPT-4**](./configs/minigpt4), [**Otter**](./configs/otter/) 等。

docs/en/notes/changelog.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog (MMPreTrain)
22

3+
## v1.0.1(28/07/2023)
4+
5+
### Improvements
6+
7+
- Add init_cfg with type='pretrained' to downstream tasks ([#1717](https://github.com/open-mmlab/mmpretrain/pull/1717)
8+
- Set 'is_init' in some multimodal methods ([#1718](https://github.com/open-mmlab/mmpretrain/pull/1718)
9+
- Adapt test cases on Ascend NPU ([#1728](https://github.com/open-mmlab/mmpretrain/pull/1728)
10+
- Add GPU Acceleration Apple silicon mac ([#1699](https://github.com/open-mmlab/mmpretrain/pull/1699)
11+
- BEiT refactor ([#1705](https://github.com/open-mmlab/mmpretrain/pull/1705)
12+
13+
### Bug Fixes
14+
15+
- Fix dict update in minigpt4. ([#1709](https://github.com/open-mmlab/mmpretrain/pull/1709)
16+
- Fix nested predict for multi-task prediction ([#1716](https://github.com/open-mmlab/mmpretrain/pull/1716)
17+
- Fix the issue #1711 "GaussianBlur doesn't work" ([#1722](https://github.com/open-mmlab/mmpretrain/pull/1722)
18+
- Just to correct a typo of 'target' ([#1655](https://github.com/open-mmlab/mmpretrain/pull/1655)
19+
- Fix freeze without cls_token in vit ([#1693](https://github.com/open-mmlab/mmpretrain/pull/1693)
20+
- Fix RandomCrop bug ([#1706](https://github.com/open-mmlab/mmpretrain/pull/1706)
21+
22+
### Docs Update
23+
24+
- Fix spelling ([#1689](https://github.com/open-mmlab/mmpretrain/pull/1689)
25+
326
## v1.0.0(04/07/2023)
427

528
### Highlights

docs/en/notes/faq.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ and make sure you fill in all required information in the template.
1616

1717
| MMPretrain version | MMEngine version | MMCV version |
1818
| :----------------: | :---------------: | :--------------: |
19-
| 1.0.0 (main) | mmengine >= 0.8.0 | mmcv >= 2.0.0 |
19+
| 1.0.1 (main) | mmengine >= 0.8.3 | mmcv >= 2.0.0 |
20+
| 1.0.0 | mmengine >= 0.8.0 | mmcv >= 2.0.0 |
2021
| 1.0.0rc8 | mmengine >= 0.7.1 | mmcv >= 2.0.0rc4 |
2122
| 1.0.0rc7 | mmengine >= 0.5.0 | mmcv >= 2.0.0rc4 |
2223

docs/zh_CN/notes/faq.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313

1414
| MMPretrain 版本 | MMEngine 版本 | MMCV 版本 |
1515
| :-------------: | :---------------: | :--------------: |
16-
| 1.0.0 (main) | mmengine >= 0.8.0 | mmcv >= 2.0.0 |
16+
| 1.0.1 (main) | mmengine >= 0.8.3 | mmcv >= 2.0.0 |
17+
| 1.0.0 | mmengine >= 0.8.0 | mmcv >= 2.0.0 |
1718
| 1.0.0rc8 | mmengine >= 0.7.1 | mmcv >= 2.0.0rc4 |
1819
| 1.0.0rc7 | mmengine >= 0.5.0 | mmcv >= 2.0.0rc4 |
1920

mmpretrain/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
mmcv_maximum_version = '2.1.0'
1111
mmcv_version = digit_version(mmcv.__version__)
1212

13-
mmengine_minimum_version = '0.8.0'
13+
mmengine_minimum_version = '0.8.3'
1414
mmengine_maximum_version = '1.0.0'
1515
mmengine_version = digit_version(mmengine.__version__)
1616

mmpretrain/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) OpenMMLab. All rights reserved
22

3-
__version__ = '1.0.0'
3+
__version__ = '1.0.1'
44

55

66
def parse_version_info(version_str):

requirements/mminstall.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
mmcv>=2.0.0,<2.1.0
2-
mmengine>=0.8.0,<1.0.0
2+
mmengine>=0.8.3,<1.0.0

0 commit comments

Comments
 (0)