Skip to content

Commit c5a0df6

Browse files
committed
Bump version to 2.3.4
1 parent fb274d8 commit c5a0df6

File tree

10 files changed

+22
-22
lines changed

10 files changed

+22
-22
lines changed

client_cli/src/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
def main():
2929
setuptools.setup(
3030
name='dataone.cli',
31-
version='2.3.3',
31+
version='2.3.4',
3232
description='Command-Line Interface (CLI) for DataONE',
3333
author='DataONE Project',
3434
author_email='[email protected]',
@@ -37,8 +37,8 @@ def main():
3737
packages=setuptools.find_packages(),
3838
include_package_data=True,
3939
install_requires=[
40-
'dataone.common == 2.3.3',
41-
'dataone.libclient == 2.3.3',
40+
'dataone.common == 2.3.4',
41+
'dataone.libclient == 2.3.4',
4242
#
4343
'requests == 2.18.1',
4444
],

client_onedrive/src/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
def main():
3333
setuptools.setup(
3434
name='dataone.onedrive',
35-
version='2.3.3',
35+
version='2.3.4',
3636
description='Filesystem access to the DataONE Workspace',
3737
author='DataONE Project',
3838
author_email='[email protected]',
@@ -41,8 +41,8 @@ def main():
4141
packages=setuptools.find_packages(),
4242
include_package_data=True,
4343
install_requires=[
44-
'dataone.common == 2.3.3',
45-
'dataone.libclient == 2.3.3',
44+
'dataone.common == 2.3.4',
45+
'dataone.libclient == 2.3.4',
4646
#
4747
'fusepy == 2.0.4',
4848
'pyxb == 1.2.5',

dev_tools/src/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
def main():
3030
setuptools.setup(
3131
name='dataone.dev',
32-
version='2.3.3',
32+
version='2.3.4',
3333
description='DataONE developer tools',
3434
author='DataONE Project',
3535
author_email='[email protected]',

gmn/src/d1_gmn/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.3.3'
1+
__version__ = '2.3.4'

gmn/src/setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def main():
3131
# noinspection PyUnresolvedReferences
3232
setuptools.setup(
3333
name='dataone.gmn',
34-
version='2.3.3',
34+
version='2.3.4',
3535
description='DataONE Generic Member Node (GMN)',
3636
author='DataONE Project',
3737
author_email='[email protected]',
@@ -43,9 +43,9 @@ def main():
4343
'': ['settings.py'],
4444
},
4545
install_requires=[
46-
'dataone.cli == 2.3.3',
47-
'dataone.common == 2.3.3',
48-
'dataone.libclient == 2.3.3',
46+
'dataone.cli == 2.3.4',
47+
'dataone.common == 2.3.4',
48+
'dataone.libclient == 2.3.4',
4949
#
5050
'django == 1.11.2',
5151
'iso8601 == 0.1.11',

lib_client/src/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
def main():
2929
setuptools.setup(
3030
name='dataone.libclient',
31-
version='2.3.3',
31+
version='2.3.4',
3232
description='A DataONE client library for Python',
3333
author='DataONE Project',
3434
author_email='[email protected]',
@@ -37,7 +37,7 @@ def main():
3737
packages=setuptools.find_packages(),
3838
include_package_data=True,
3939
install_requires=[
40-
'dataone.common == 2.3.3',
40+
'dataone.common == 2.3.4',
4141
#
4242
'cachecontrol == 0.12.3',
4343
'pyxb == 1.2.5',

lib_common/src/d1_common/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
)
3838

3939
# Version of the DataONE Python stack
40-
VERSION = '2.3.3'
40+
VERSION = '2.3.4'
4141

4242
# Maximum number of entries per list objects request.
4343
MAX_LISTOBJECTS = 1000

lib_common/src/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
def main():
2929
setuptools.setup(
3030
name='dataone.common',
31-
version='2.3.3',
31+
version='2.3.4',
3232
description=(
3333
'Contains functionality common to projects that interact with '
3434
'the DataONE infrastructure via Python'

test_utilities/src/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
def main():
2929
setuptools.setup(
3030
name='dataone.test_utilities',
31-
version='2.3.3',
31+
version='2.3.4',
3232
description='Utilities for testing DataONE infrastructure components',
3333
author='DataONE Project',
3434
author_email='[email protected]',
@@ -37,7 +37,7 @@ def main():
3737
packages=setuptools.find_packages(),
3838
include_package_data=True,
3939
install_requires=[
40-
'dataone.libclient == 2.3.3',
40+
'dataone.libclient == 2.3.4',
4141
#
4242
'contextlib2 == 0.5.5',
4343
'decorator == 4.0.11',

tools/src/setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
def main():
3030
setuptools.setup(
3131
name='dataone.tools',
32-
version='2.3.3',
32+
version='2.3.4',
3333
description='DataONE tools and examples',
3434
author='DataONE Project',
3535
author_email='[email protected]',
@@ -42,9 +42,9 @@ def main():
4242
},
4343
install_requires=[
4444
# These are not yet available when bootstrapping on Travis
45-
'dataone.cli == 2.3.3',
46-
'dataone.common == 2.3.3',
47-
'dataone.libclient == 2.3.3',
45+
'dataone.cli == 2.3.4',
46+
'dataone.common == 2.3.4',
47+
'dataone.libclient == 2.3.4',
4848
],
4949
setup_requires=[
5050
'setuptools_git >= 1.1',

0 commit comments

Comments
 (0)