diff --git a/CHANGE.md b/CHANGE.md index adec0b5..31185a1 100644 --- a/CHANGE.md +++ b/CHANGE.md @@ -1,5 +1,16 @@ # CHANGE + +## v0.14.0 + +* New features + * perf(transforms): update Resize/AutoAugment/SquarePad + 1. add largest edge mode for Resize; + 2. optimize realization for Resize/AutoAugment/SquarePad. +* Bug fixes + * fix(transforms): support Resize and Resize2 together +* Breaking changes. + ## v0.13.6 * New features diff --git a/docs/index.md b/docs/index.md index 5b77e23..33befef 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,4 +1,4 @@ -# ZCls(v0.13.6) +# ZCls(v0.14.0) Welcome to zcls, a classification model training/inferring framework. diff --git a/mkdocs.yml b/mkdocs.yml index 5dd201c..8c9058d 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -13,7 +13,7 @@ site_dir: 'site' # 额外信息 extra: # 版本号 - version: 0.13.6 + version: 0.14.0 # 主题 theme: # name: 'readthedocs' diff --git a/zcls/__init__.py b/zcls/__init__.py index 60191e7..9bd84ba 100644 --- a/zcls/__init__.py +++ b/zcls/__init__.py @@ -7,4 +7,4 @@ @description: """ -__version__ = '0.13.6' \ No newline at end of file +__version__ = '0.14.0' \ No newline at end of file