Skip to content
This repository has been archived by the owner on Jul 29, 2020. It is now read-only.

Commit

Permalink
update to 0.1.3; fix path for install script
Browse files Browse the repository at this point in the history
  • Loading branch information
cglewis committed Sep 16, 2013
1 parent 6925e4b commit 9c2ba96
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
### 0.1.3 (2013-09-16)

- stubbed breaking out hfs into a more modular structure (incomplete)
- added man page and lots more documentation
- added query-data to API (incomplete)
- added version to argument options
- added lots of debugging and capability to get debugging statements using -D
- bug fixes

### 0.1.2 (2013-09-03)

- added storing of client and hemlock creds in mysql
Expand Down
2 changes: 1 addition & 1 deletion hemlock/hemlock.py
Original file line number Diff line number Diff line change
Expand Up @@ -1195,7 +1195,7 @@ def get_auth(self):
return args_leftover, options.user, options.pw, options.db, options.server, options.c_server, options.bucket, options.c_pw, options.es, options.debug

if options.version != None:
print "Version: 0.1.2"
print "Version: 0.1.3"
sys.exit(0)

if options.debug == None:
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/setup_env_hemlock.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ sudo pip install couchbase --upgrade
sudo apt-get install -y python-mysqldb

# install hemlock man page
sudo cp ../../docs/_build/man/hemlock.1 /usr/share/man/man1/hemlock.1.gz
sudo cp docs/_build/man/hemlock.1 /usr/share/man/man1/hemlock.1.gz
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def run(self):

setup(
name='hemlock',
version='0.1.2',
version='0.1.3',
author=u'Charlie Lewis',
author_email='charliel@lab41.org',
description='Hemlock is a way of providing a common data access layer.',
Expand Down

0 comments on commit 9c2ba96

Please sign in to comment.