Skip to content

Commit e71b499

Browse files
authored
Add changelog of v2.25.3 (#9127)
1 parent c5c7aad commit e71b499

File tree

5 files changed

+32
-2
lines changed

5 files changed

+32
-2
lines changed

docker/serve/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG CUDNN="7"
44
FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel
55

66
ARG MMCV="1.3.17"
7-
ARG MMDET="2.25.2"
7+
ARG MMDET="2.25.3"
88

99
ENV PYTHONUNBUFFERED TRUE
1010

docs/en/changelog.md

+28
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
## Changelog
22

3+
### v2.25.3 (25/10/2022)
4+
5+
#### Bug Fixes
6+
7+
- Skip remote sync when wandb is offline (#8755)
8+
- Fix jpg to png bug when using seg maps (#9078)
9+
10+
#### Improvements
11+
12+
- Fix typo in warning (#8844)
13+
- Fix CI for timm, pycocotools, onnx (#9034)
14+
- Upgrade pre-commit hooks (#8964)
15+
16+
#### Documents
17+
18+
- Update BoundedIoULoss config in readme (#8808)
19+
- Fix Faster R-CNN Readme (#8803)
20+
- Update location of test_cfg and train_cfg (#8792)
21+
- Fix issue template (#8966)
22+
- Update random sampler docstring (#9033)
23+
- Fix wrong image link (#9054)
24+
- Fix FPG readme (#9041)
25+
26+
#### Contributors
27+
28+
A total of 13 developers contributed to this release.
29+
Thanks @Zheng-LinXiao, @i-aki-y, @fbagci, @sudoAimer, @Czm369, @DrRyanHuang, @RangiLyu, @wanghonglie, @shinya7y, @Ryoo72, @akshaygulabrao, @gy-7, @Neesky
30+
331
### v2.25.2 (15/9/2022)
432

533
#### Bug Fixes

docs/en/faq.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ We list some common troubles faced by many users and their corresponding solutio
1111
| MMDetection version | MMCV version |
1212
| :-----------------: | :------------------------: |
1313
| master | mmcv-full>=1.3.17, \<1.7.0 |
14+
| 2.25.3 | mmcv-full>=1.3.17, \<1.7.0 |
1415
| 2.25.2 | mmcv-full>=1.3.17, \<1.7.0 |
1516
| 2.25.1 | mmcv-full>=1.3.17, \<1.6.0 |
1617
| 2.25.0 | mmcv-full>=1.3.17, \<1.6.0 |

docs/zh_cn/get_started.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ MMDetection 和 MMCV 版本兼容性如下所示,需要安装正确的 MMCV
1212
| MMDetection 版本 | MMCV 版本 |
1313
| :--------------: | :------------------------: |
1414
| master | mmcv-full>=1.3.17, \<1.7.0 |
15+
| 2.25.3 | mmcv-full>=1.3.17, \<1.7.0 |
1516
| 2.25.2 | mmcv-full>=1.3.17, \<1.7.0 |
1617
| 2.25.1 | mmcv-full>=1.3.17, \<1.6.0 |
1718
| 2.25.0 | mmcv-full>=1.3.17, \<1.6.0 |

mmdet/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) OpenMMLab. All rights reserved.
22

3-
__version__ = '2.25.2'
3+
__version__ = '2.25.3'
44
short_version = __version__
55

66

0 commit comments

Comments
 (0)