Skip to content

Commit

Permalink
bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Apr 24, 2019
1 parent c4b26e8 commit ed4c93a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
# import os
# import sys
# sys.path.insert(0, os.path.abspath('.'))
import os
import sys
# HACK: muck with paths until we can import ourself
sys.path.insert(0, os.path.abspath('.'))
sys.path.insert(0, os.path.abspath('..'))
sys.path.insert(0, os.path.abspath('../..'))


# -- Project information -----------------------------------------------------
Expand All @@ -24,7 +27,7 @@
author = 'Jon Crall'

# The short X.Y version
import progiter
import progiter # NOQA
version = '.'.join(progiter.__version__.split('.')[0:2])
# The full version, including alpha/beta/rc tags
release = ''
Expand Down
2 changes: 1 addition & 1 deletion progiter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .progiter import (ProgIter,)

__version__ = '0.1.0'
__version__ = '0.1.1'
__all__ = [
'ProgIter',
]

0 comments on commit ed4c93a

Please sign in to comment.