Skip to content

Commit

Permalink
Update to version 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cdgriffith committed May 15, 2014
1 parent 69cbc20 commit 6b78720
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

Version 0.1.4
Version 0.2.0
-------------

- Added DateTime class
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ install:
sudo $(PYTHON2) setup.py build install;

upload: clean test register build
$(PYTHON2) setup.py sdist upload --sign;
$(PYTHON2) setup.py sdist upload;
for python in $(PYTHONS); do\
"$$python" setup.py bdist_egg upload --sign; \
"$$python" setup.py bdist_egg upload; \
done
$(PYTHON2) setup.py bdist_wheel upload --sign;
$(PYTHON3) setup.py bdist_wheel upload --sign;
$(PYTHON2) setup.py bdist_wheel upload;
$(PYTHON3) setup.py bdist_wheel upload;

help:
@echo "Reusables"
Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1.4'
version = '0.2.0'
# The full version, including alpha/beta/rc tags.
release = '0.1.4'
release = '0.2.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion reusables/reusables.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Copyright (c) 2014 - Chris Griffith - MIT License
"""
__author__ = "Chris Griffith"
__version__ = "0.1.3"
__version__ = "0.2.0"

import os
import sys
Expand Down

0 comments on commit 6b78720

Please sign in to comment.