Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
robkooper committed Mar 4, 2022
1 parent ac223d4 commit 1be6a76
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 2.5.0 - 2022-03-02
## 2.5.0 - 2022-03-04

### Fixed
- extractor would fail on empty dataset download [#36](https://github.com/clowder-framework/pyclowder/issues/36)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ create new extractors.
Install using pip (for most recent versions see: https://pypi.org/project/pyclowder/):

```
pip install pyclowder==2.4.1
pip install pyclowder==2.5.0
```

Install pyClowder on your system by cloning this repo:
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
# built documents.
#
# The short X.Y version.
version = u'2.4'
version = u'2.5'
# The full version, including alpha/beta/rc tags.
release = u'2.4.1'
release = u'2.5.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion sample-extractors/wordcount/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pyclowder==2.4.0
pyclowder==2.5.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='pyclowder',
version='2.4.1',
version='2.5.0',
description='Python SDK for the Clowder Data Management System',
long_description=long_description,

Expand Down
11 changes: 11 additions & 0 deletions version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

VERSION=${1:-2.5.0}

MAJOR=${VERSION%.*}

sed -i~ "s/## unreleased.*/## ${VERSION} - $(date +'%Y-%m-%d')/i" CHANGELOG.md
sed -i~ "s/pyclowder==.*/pyclowder==${VERSION}/" README.md
sed -i~ "s/pyclowder==.*/pyclowder==${VERSION}/" sample-extractors/wordcount/requirements.txt
sed -i~ -e "s/release = u'.*'/release = u'${VERSION}'/" -e "s/version = u'.*'/version = u'${MAJOR}'/" docs/source/conf.py
sed -i~ "s/version='.*'/version='${VERSION}'/" setup.py

0 comments on commit 1be6a76

Please sign in to comment.