Skip to content

Commit

Permalink
Release v1.8.2 (fixed import errors in v1.8.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasmcaus committed Nov 17, 2020
1 parent f66db08 commit 35c2681
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions caer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def get_caer_methods():
from .morph import __all__ as __all_morph__


__all__ = __all_globals__ + __all_io__ + __all_resize__ + __all_opencv__ + __all_preprocess__ + __all_time__ + __all_utilities__ + __all_visualizations__ + __all_filters__ + __all_distance__ + __all_morph__
__all__ = __all_globals__ + __all_io__ + __all_resize__ + __all_opencv__ + __all_preprocess__ + __all_time__ + __all_utilities__ + __all_visualizations__ + __all_distance__ + __all_morph__

__all__ += __all_preprocessing__
__all__ += __all_video__
Expand All @@ -202,5 +202,5 @@ def get_caer_methods():
del __all_data__
del __all_utils__
del __all_distance__
del __all_filters__
# del __all_filters__
del __all_morph__
4 changes: 2 additions & 2 deletions caer/_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is automatically generated during the generation of setup.py
# Copyright 2020, Caer
author = 'Jason Dsouza <jasmcaus@gmail.com>'
version = '1.8.1'
full_version = '1.8.1'
version = '1.8.2'
full_version = '1.8.2'
release = True
contributors = ['Jason Dsouza <jasmcaus@gmail.com>']
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

MAJOR = 1
MINOR = 8
MICRO = 1
MICRO = 2
ISRELEASED = True
VERSION = f'{MAJOR}.{MINOR}.{MICRO}'

Expand Down

0 comments on commit 35c2681

Please sign in to comment.