Skip to content

Commit 1be6a76

Browse files
committed
version bump
1 parent ac223d4 commit 1be6a76

File tree

6 files changed

+17
-6
lines changed

6 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## 2.5.0 - 2022-03-02
7+
## 2.5.0 - 2022-03-04
88

99
### Fixed
1010
- extractor would fail on empty dataset download [#36](https://github.com/clowder-framework/pyclowder/issues/36)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ create new extractors.
1515
Install using pip (for most recent versions see: https://pypi.org/project/pyclowder/):
1616

1717
```
18-
pip install pyclowder==2.4.1
18+
pip install pyclowder==2.5.0
1919
```
2020

2121
Install pyClowder on your system by cloning this repo:

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@
5757
# built documents.
5858
#
5959
# The short X.Y version.
60-
version = u'2.4'
60+
version = u'2.5'
6161
# The full version, including alpha/beta/rc tags.
62-
release = u'2.4.1'
62+
release = u'2.5.0'
6363

6464
# The language for content autogenerated by Sphinx. Refer to documentation
6565
# for a list of supported languages.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pyclowder==2.4.0
1+
pyclowder==2.5.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name='pyclowder',
11-
version='2.4.1',
11+
version='2.5.0',
1212
description='Python SDK for the Clowder Data Management System',
1313
long_description=long_description,
1414

version.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
3+
VERSION=${1:-2.5.0}
4+
5+
MAJOR=${VERSION%.*}
6+
7+
sed -i~ "s/## unreleased.*/## ${VERSION} - $(date +'%Y-%m-%d')/i" CHANGELOG.md
8+
sed -i~ "s/pyclowder==.*/pyclowder==${VERSION}/" README.md
9+
sed -i~ "s/pyclowder==.*/pyclowder==${VERSION}/" sample-extractors/wordcount/requirements.txt
10+
sed -i~ -e "s/release = u'.*'/release = u'${VERSION}'/" -e "s/version = u'.*'/version = u'${MAJOR}'/" docs/source/conf.py
11+
sed -i~ "s/version='.*'/version='${VERSION}'/" setup.py

0 commit comments

Comments
 (0)