Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
cool-RR committed Nov 24, 2014
1 parent 7f1602c commit d763381
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 20 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ There are three Combi groups, a.k.a. mailing lists:
Roadmap
=======

Combi is currently at a version 0.1.0. It's in a very early phase, and
Combi is currently at a version 0.1.1. It's in a very early phase, and
currently backward compatibility will not be maintained, to allow for freedom
in changing the API. After more feedback and revisions to the API, backward
compatibility will start being maintained.
Expand Down
7 changes: 6 additions & 1 deletion docs/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,9 @@ Combi changelog
Version 0.1.0 - 2014-11-17
--------------------------

- First release of Combi :)
- First release of Combi :)

Version 0.1.1 - 2014-11-24
--------------------------

- Fixed installation bug on Python 2.7.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1.0'
version = '0.1.1'
# The full version, including alpha/beta/rc tags.
release = '0.1.0'
release = '0.1.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ There are three Combi groups, a.k.a. mailing lists:
Roadmap
=======

Combi is currently at a version 0.1.0. It's in a very early phase, and
Combi is currently at a version 0.1.1. It's in a very early phase, and
currently backward compatibility will not be maintained, to allow for freedom
in changing the API. After more feedback and revisions to the API, backward
compatibility will start being maintained.
Expand Down
5 changes: 3 additions & 2 deletions misc/IDE files/Wing/combi_py3.wpr
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@ debug.launch-configs = (1,
'rundir': ('default',
u'')})})
proj.directory-list = [{'dirloc': loc('../../..'),
'excludes': [u'dist',
'excludes': [u'nosetests.xml',
u'source_py3/combi.egg-info',
u'source_py2',
u'.coverage_html_report',
u'build',
u'source_py3/.coverage_html_report',
u'nosetests.xml',
u'dist',
u'docs/_build',
u'combi.egg-info'],
'filter': '*',
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def get_packages():
Roadmap
=======
Combi is currently at a version 0.1.0. It's in a very early phase, and
Combi is currently at a version 0.1.1. It's in a very early phase, and
currently backward compatibility will not be maintained, to allow for freedom
in changing the API. After more feedback and revisions to the API, backward
compatibility will start being maintained.
Expand Down Expand Up @@ -261,7 +261,7 @@ def get_packages():

setuptools.setup(
name='combi',
version='0.1.0',
version='0.1.1',
test_suite='nose.collector',
install_requires=install_requires,
tests_require=['nose>=1.0.0',
Expand Down
2 changes: 1 addition & 1 deletion source_py2/combi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
from .perming import (PermSpace, CombSpace, Perm, UnrecurrentedPerm, Comb,
UnrecurrentedComb, UnallowedVariationSelectionException)

__version_info__ = combi._python_toolbox.version_info.VersionInfo(0, 1, 0)
__version_info__ = combi._python_toolbox.version_info.VersionInfo(0, 1, 1)
__version__ = __version_info__.version_text

5 changes: 0 additions & 5 deletions source_py2/combi/_python_toolbox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,3 @@
import combi._python_toolbox._bootstrap
import combi._python_toolbox
import combi._python_toolbox.monkeypatch_envelopes
from .version_info import VersionInfo

__version_info__ = VersionInfo(0, 1, 0)
__version__ = __version_info__.version_text

2 changes: 1 addition & 1 deletion source_py3/combi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
from .perming import (PermSpace, CombSpace, Perm, UnrecurrentedPerm, Comb,
UnrecurrentedComb, UnallowedVariationSelectionException)

__version_info__ = combi._python_toolbox.version_info.VersionInfo(0, 1, 0)
__version_info__ = combi._python_toolbox.version_info.VersionInfo(0, 1, 1)
__version__ = __version_info__.version_text

4 changes: 0 additions & 4 deletions source_py3/combi/_python_toolbox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,4 @@
import combi._python_toolbox._bootstrap
import combi._python_toolbox
import combi._python_toolbox.monkeypatch_envelopes
from .version_info import VersionInfo

__version_info__ = VersionInfo(0, 1, 0)
__version__ = __version_info__.version_text

0 comments on commit d763381

Please sign in to comment.