Skip to content

Commit aade680

Browse files
authored
Bump version to 1.0.0 (#2029)
* bump version to 1.0.0 * fix typos * update the version in docs
1 parent f96e57d commit aade680

File tree

4 files changed

+49
-6
lines changed

4 files changed

+49
-6
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ This project is released under the [Apache 2.0 license](LICENSE).
4040

4141
## Changelog
4242

43-
v1.0rc1 was released in 13/12/2019, with more than 20 bug fixes and 30 improvements and new features.
44-
Please refer to [CHANGELOG.md](docs/CHANGELOG.md) for details and history versions.
43+
v1.0.0 was released in 30/1/2020, with more than 20 fixes and improvements.
44+
Please refer to [CHANGELOG.md](docs/CHANGELOG.md) for details and release history.
4545

4646
## Benchmark and model zoo
4747

docs/CHANGELOG.md

+43
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,48 @@
11
## Changelog
22

3+
### v1.0.0 (30/1/2020)
4+
5+
This release mainly improves the code quality and add more docstrings.
6+
7+
**Highlights**
8+
- Documentation is online now: https://mmdetection.readthedocs.io.
9+
- Support new models: [ATSS](https://arxiv.org/abs/1912.02424).
10+
- DCN is now available with the api `build_conv_layer` and `ConvModule` like the normal conv layer.
11+
- A tool to collect environment information is available for trouble shooting.
12+
13+
**Bug Fixes**
14+
- Fix the incompatibility of the latest numpy and pycocotools. (#2024)
15+
- Fix the case when distributed package is unavailable, e.g., on Windows. (#1985)
16+
- Fix the dimension issue for `refine_bboxes()`. (#1962)
17+
- Fix the typo when `seg_prefix` is a list. (#1906)
18+
- Add segmentation map cropping to RandomCrop. (#1880)
19+
- Fix the return value of `ga_shape_target_single()`. (#1853)
20+
- Fix the loaded shape of empty proposals. (#1819)
21+
- Fix the mask data type when using albumentation. (#1818)
22+
23+
**Improvements**
24+
- Enhance AssignResult and SamplingResult. (#1995)
25+
- Add ability to overwrite existing module in Registry. (#1982)
26+
- Reorganize requirements and make albumentations and imagecorruptions optional. (#1969)
27+
- Check NaN in `SSDHead`. (#1935)
28+
- Encapsulate the DCN in ResNe(X)t into a ConvModule & Conv_layers. (#1894)
29+
- Refactoring for mAP evaluation and support multiprocessing and logging. (#1889)
30+
- Init the root logger before constructing Runner to log more information. (#1865)
31+
- Split `SegResizeFlipPadRescale` into different existing transforms. (#1852)
32+
- Move `init_dist()` to MMCV. (#1851)
33+
- Documentation and docstring improvements. (#1971, #1938, #1869, #1838)
34+
- Fix the color of the same class for mask visualization. (#1834)
35+
- Remove the option `keep_all_stages` in HTC and Cascade R-CNN. (#1806)
36+
37+
**New Features**
38+
- Add two test-time options `crop_mask` and `rle_mask_encode` for mask heads. (#2013)
39+
- Support loading grayscale images as single channel. (#1975)
40+
- Implement "Bridging the Gap Between Anchor-based and Anchor-free Detection via Adaptive Training Sample Selection". (#1872)
41+
- Add sphinx generated docs. (#1859, #1864)
42+
- Add GN support for flops computation. (#1850)
43+
- Collect env info for trouble shooting. (#1812)
44+
45+
346
### v1.0rc1 (13/12/2019)
447

548
The RC1 release mainly focuses on improving the user experience, and fixing bugs.

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
# -- Project information -----------------------------------------------------
1818

1919
project = 'MMDetection'
20-
copyright = '2018-2019, OpenMMLab'
20+
copyright = '2018-2020, OpenMMLab'
2121
author = 'OpenMMLab'
2222

2323
# The full version, including alpha/beta/rc tags
24-
release = '1.0rc1'
24+
release = '1.0.0'
2525

2626
# -- General configuration ---------------------------------------------------
2727

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ def readme():
2222

2323
MAJOR = 1
2424
MINOR = 0
25-
PATCH = ''
26-
SUFFIX = 'rc1'
25+
PATCH = 0
26+
SUFFIX = ''
2727
if PATCH:
2828
SHORT_VERSION = '{}.{}.{}{}'.format(MAJOR, MINOR, PATCH, SUFFIX)
2929
else:

0 commit comments

Comments
 (0)