File tree Expand file tree Collapse file tree 6 files changed +17
-6
lines changed
Expand file tree Collapse file tree 6 files changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
55and 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 )
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ create new extractors.
1515Install 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
2121Install pyClowder on your system by cloning this repo:
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 1- pyclowder == 2.4 .0
1+ pyclowder == 2.5 .0
Original file line number Diff line number Diff line change 88
99setup (
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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments