Skip to content

Commit

Permalink
added new version for auto-build
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-gangl committed Feb 1, 2022
1 parent 459aab0 commit 840ce39
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
4 changes: 1 addition & 3 deletions BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
```

9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion subscriber/podaac_data_subscriber.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 840ce39

Please sign in to comment.