Skip to content

V0.3.2 #84

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.3.2 (2018-05-14)
------------------
- Provide a default value of False for imagery_offset to preview function (#79)

0.3.1 (2018-04-19)
------------------
- Add colors for object detection and segmentation labels (#64)
Expand Down
2 changes: 1 addition & 1 deletion label_maker/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Library verison"""
__version__ = '0.3.1'
__version__ = '0.3.2'
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]
dependency_links = [x.strip().replace('git+', '') for x in all_reqs if 'git+' not in x]

# readme
with open('README.md') as f:
readme = f.read()

setup(
name='label-maker',
author='Drew Bollinger',
Expand All @@ -36,4 +40,6 @@
include_package_data=True,
install_requires=install_requires,
dependency_links=dependency_links,
long_description=readme,
long_description_content_type="text/markdown"
)