From ed5b76e6eed66b9e81e2ec26e38993dc3ac2dbe9 Mon Sep 17 00:00:00 2001 From: Kai Chen <chenkaidev@gmail.com> Date: Wed, 6 Feb 2019 23:59:11 +0800 Subject: [PATCH] the last releaes on Pytorch 0.4.1 --- README.md | 4 ++++ setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cd31c144..21ff0ffd 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,10 @@ This project is released under the [Apache 2.0 license](LICENSE). ## Updates +v0.5.7 (06/02/2019) +- Add support for Deformable ConvNet v2. (Many thanks to the authors and [@chengdazhi](https://github.com/chengdazhi)) +- This is the last release based on PyTorch 0.4.1. + v0.5.6 (17/01/2019) - Add support for Group Normalization. - Unify RPNHead and single stage heads (RetinaHead, SSDHead) with AnchorHead. diff --git a/setup.py b/setup.py index 2100b489..879c1e32 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ def readme(): MAJOR = 0 MINOR = 5 -PATCH = 6 +PATCH = 7 SUFFIX = '' SHORT_VERSION = '{}.{}.{}{}'.format(MAJOR, MINOR, PATCH, SUFFIX) -- GitLab