diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f3d579..21789a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,25 @@ 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/) + +## Unreleased +### Added +### Changed +- Made number of files to download a non-verbose default printout. [33](https://github.com/podaac/data-subscriber/issues/33) +### Deprecated +### Removed +### Fixed +### Security + +## [1.7.2] +### Added +### Changed +- Made number of files to download a non-verbose default printout. [33](https://github.com/podaac/data-subscriber/issues/33) +### Deprecated +### Removed +### Fixed +### Security + ## [1.7.1] ### Added - Auto build and deploy to pypi on tag/release. diff --git a/setup.py b/setup.py index ecfa66d..a694654 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ long_description = fh.read() setup(name='podaac-data-subscriber', - version='1.7.1', + version='1.7.2', 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 b988d5d..e2bbc43 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.1" +__version__ = "1.7.2" LOGLEVEL = os.environ.get('SUBSCRIBER_LOGLEVEL', 'WARNING').upper() logging.basicConfig(level=LOGLEVEL) @@ -401,8 +401,11 @@ def run(): downloads = filtered_downloads + # https://github.com/podaac/data-subscriber/issues/33 + # Make this a non-verbose message + #if args.verbose: + print("Found " + str(len(downloads)) + " total files to download") if args.verbose: - print("Found " + str(len(downloads)) + " total files to download") print("Downloading files with extensions: " + str(extensions))