Skip to content

Commit fe88e36

Browse files
committed
version bump
1 parent a955af2 commit fe88e36

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ 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.1.0 - 2018-07-06
8+
9+
### Added
10+
- [Simple extractor](https://opensource.ncsa.illinois.edu/confluence/display/CATS/Simple+Extractor+wrapper+for+basic+functions), now can create a extractor from a single function.
11+
12+
### Fixed
13+
- Acks were not always send due to racing condition
14+
[CATS-886](https://opensource.ncsa.illinois.edu/jira/browse/CATS-886)
15+
716
## 2.0.3 - 2018-04-18
817

918
### Added

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.0'
60+
version = u'2.1'
6161
# The full version, including alpha/beta/rc tags.
62-
release = u'2.0'
62+
release = u'2.1.0'
6363

6464
# The language for content autogenerated by Sphinx. Refer to documentation
6565
# for a list of supported languages.

release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ $(dirname $0)/docker.sh
2020

2121
# check branch and set version
2222
if [ "${BRANCH}" = "master" ]; then
23-
VERSION=${VERSION:-"2.0.3 2.0 2 latest"}
23+
VERSION=${VERSION:-"2.1.0 2.1 2 latest"}
2424
elif [ "${BRANCH}" = "develop" ]; then
2525
VERSION="develop"
2626
else

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def description():
99

1010

1111
setup(name='pyclowder',
12-
version='2.0.3',
12+
version='2.1.0',
1313
packages=find_packages(),
1414
description='Python SDK for the Clowder Data Management System',
1515
long_description=description(),

0 commit comments

Comments
 (0)