Skip to content

Commit b2ed314

Browse files
committed
[#3] Bump version to 0.7.0
1 parent f297a61 commit b2ed314

File tree

5 files changed

+65
-6
lines changed

5 files changed

+65
-6
lines changed

CHANGELOG.rst

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,60 @@ Changelog
22
=========
33

44

5+
v0.7.0 (2017-12-15)
6+
-------------------
7+
- Dynamic instance method definition for Python2/3. [Antoine de Torcy]
8+
- Filter by collection path. [Antoine de Torcy]
9+
- Add truncate flag. [Antoine de Torcy]
10+
- Add update replica keyword. [Antoine de Torcy]
11+
- Client-side support for ALL_KW on put. [Antoine de Torcy]
12+
- Add server version to session properties. [Antoine de Torcy]
13+
- Pass object IO options in unpacked format. [Antoine de Torcy]
14+
- Refactor tests and session config. [Antoine de Torcy]
15+
- First pass at SSL support. [Antoine de Torcy]
16+
- Use reentrant lock in connection pool. [Antoine de Torcy]
17+
- Allow for cases with CS_NEG_DONT_CARE. [Antoine de Torcy]
18+
- First pass at client-server negotiation. [Antoine de Torcy]
19+
- Simplify session/account initialization. [Antoine de Torcy]
20+
- Expect multiple DNs per user. [Antoine de Torcy]
21+
- Use default resource host/path strings. [Antoine de Torcy]
22+
- Honor default resource setting. [Antoine de Torcy]
23+
- Add placeholder for formatting arguments. [Antoine de Torcy]
24+
- Add function get_html_string in results.py. [KERVELLEC Joseph]
25+
- Fix assertions. [Antoine de Torcy]
26+
- Test registration with checksum. [Antoine de Torcy]
27+
- Add admin option to AccessManager.set() [Antoine de Torcy]
28+
- Add file/dir registration. [Antoine de Torcy]
29+
- Remove call to sys.exc_clear() [Antoine de Torcy]
30+
- Force flag support on get. [Antoine de Torcy]
31+
- Fix intermittent encoding error. [Antoine de Torcy]
32+
- Update iRODSSession.configure() [Antoine de Torcy]
33+
- Set default iRODS authentication scheme to native. [Lazlo Westerhof]
34+
- Use the same naming as iRODS environment variable
35+
irods_authentication_scheme. [Lazlo Westerhof]
36+
- Add connection timeout. [Antoine de Torcy]
37+
- Extend the query condition interface. [Antoine de Torcy]
38+
- Better handling of byte buffers. [Antoine de Torcy]
39+
- Python 3 fix. [Antoine de Torcy]
40+
- Set OPR_TYPE to 1 on put. [Antoine de Torcy]
41+
- Set default empty username in iRODSAccess. [Antoine de Torcy]
42+
- Add ability to set user passwords. [Antoine de Torcy]
43+
- First pass at iRODS ticket support - ticket generation - ticket based
44+
access. [Antoine de Torcy]
45+
- Add dependencies to setup.py. [Antoine de Torcy]
46+
- Add object put/get test. [Antoine de Torcy]
47+
- Unpack error messages. [Antoine de Torcy]
48+
- Add CAT_UNKNOWN_SPECIFIC_QUERY exception. [Antoine de Torcy]
49+
- Commits for the english language, which apparently I'm qualified in..
50+
[John Constable]
51+
- Document the use of the SpecificQuery class and irods_environment.jon
52+
reading functionality. [John Constable]
53+
- Adds exists() to data_object manager to mirror collection manager.
54+
[Alex Lemann]
55+
- Remove unused exceptions. [Antoine de Torcy]
56+
- Fix exception hierarchy. [Antoine de Torcy]
57+
58+
559
v0.6.0 (2017-05-23)
660
-------------------
761
- Patch for GSI. [pdonorio]

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include AUTHORS CHANGELOG.rst LICENSE.txt README.md irods/test/unicode_sampler.xml
1+
include AUTHORS CHANGELOG.rst LICENSE.txt README.rst irods/test/README.rst irods/test/unicode_sampler.xml

irods/version.py

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

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[metadata]
2-
description-file = README.md
2+
description-file = README.rst

setup.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,24 @@
55
# Get package version
66
version = {}
77
here = os.path.abspath(os.path.dirname(__file__))
8-
with open(os.path.join(here, 'irods/version.py')) as f:
9-
exec(f.read(), version)
8+
with open(os.path.join(here, 'irods/version.py')) as file:
9+
exec(file.read(), version)
10+
11+
12+
# Get description
13+
with open('README.rst') as file:
14+
long_description = file.read()
1015

1116

1217
setup(name='python-irodsclient',
1318
version=version['__version__'],
1419
author='iRODS Consortium',
1520
author_email='support@irods.org',
1621
description='A python API for iRODS',
22+
long_description=long_description,
1723
license='BSD',
1824
url='https://github.com/irods/python-irodsclient',
1925
keywords='irods',
20-
long_description='README.rst',
2126
classifiers=[
2227
'License :: OSI Approved :: BSD License',
2328
'Development Status :: 4 - Beta',

0 commit comments

Comments
 (0)