diff --git a/BUILD.md b/BUILD.md index 8875926..10ba345 100644 --- a/BUILD.md +++ b/BUILD.md @@ -4,11 +4,10 @@ ``` python3 -m pip install --upgrade build python3 -m pip install --upgrade pip -python3 -m pip install --upgrade build python3 -m pip install --upgrade twine ``` -## Clean, build, and upload +## Clean, build, and upload ``` rm -r dist python3 -m build @@ -24,4 +23,3 @@ python3 -m twine upload dist/* pip install podaac-data-subscriber==1.7.0 podaac-data-subscriber -c xxx -d ddd --version ``` - diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f3fa36..4f3d579 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +## [1.7.1] +### Added +- Auto build and deploy to pypi on tag/release. +### Changed +### Deprecated +### Removed +### Fixed +### Security + ## [1.7.0] ### Added - Added ability to call a process on downlaoded files. [Thank to Joe Sapp](https://github.com/sappjw). diff --git a/setup.py b/setup.py index 874c403..ecfa66d 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ long_description = fh.read() setup(name='podaac-data-subscriber', - version='1.7.0', + version='1.7.1', description='PO.DAAC Data Susbcriber Command Line Tool', url='https://github.com/podaac/data-subscriber', long_description=long_description, diff --git a/subscriber/podaac_data_subscriber.py b/subscriber/podaac_data_subscriber.py index 7817ab2..b988d5d 100755 --- a/subscriber/podaac_data_subscriber.py +++ b/subscriber/podaac_data_subscriber.py @@ -30,7 +30,7 @@ from urllib.request import urlopen, urlretrieve from datetime import datetime, timedelta -__version__ = "1.7.0" +__version__ = "1.7.1" LOGLEVEL = os.environ.get('SUBSCRIBER_LOGLEVEL', 'WARNING').upper() logging.basicConfig(level=LOGLEVEL)