From ede8aec6ca689d1189f74eb5f4ce126095fea385 Mon Sep 17 00:00:00 2001 From: Kai Chen <chenkaidev@gmail.com> Date: Mon, 26 Nov 2018 23:58:11 +0800 Subject: [PATCH] update version to 0.5.4 --- README.md | 3 +++ setup.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3759c65..3ace2df 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,9 @@ This project is released under the [Apache 2.0 license](LICENSE). ## Updates +v0.5.4 (27/11/2018) +- Add SingleStageDetector and RetinaNet. + v0.5.3 (26/11/2018) - Add Cascade R-CNN and Cascade Mask R-CNN. diff --git a/setup.py b/setup.py index 625de9a..350b307 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ def readme(): MAJOR = 0 MINOR = 5 -PATCH = 3 +PATCH = 4 SUFFIX = '' SHORT_VERSION = '{}.{}.{}{}'.format(MAJOR, MINOR, PATCH, SUFFIX) -- GitLab