Bump client version to 0.2.0

Make invalid bit length error handling consistent between secrets and
orders
This commit is contained in:
Arash Ghoreyshi
2013-06-28 15:54:48 -05:00
parent 8468800bf4
commit d5d7eea009
3 changed files with 2 additions and 5 deletions

View File

@@ -198,8 +198,7 @@ class Connection(object):
secret_dict['name'] = name
secret_dict['algorithm'] = algorithm
secret_dict['cypher_type'] = cypher_type
if bit_length is not None:
secret_dict['bit_length'] = int(bit_length)
secret_dict['bit_length'] = bit_length
if expiration is not None:
secret_dict['expiration'] = parse_isotime(expiration)
self._remove_empty_keys(secret_dict)

View File

@@ -1,5 +1,3 @@
#!/usr/bin/env python
import argparse
from barbicanclient import client

View File

@@ -26,7 +26,7 @@ def read(fname):
setuptools.setup(
name=name,
version="0.1dev",
version="0.2dev",
description='Client Library for OpenStack Barbican Key Management API',
long_description=read('README.md'),
keywords="openstack encryption key-management secret",