Skip to content

Commit

Permalink
1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
luissilva1044894 committed May 26, 2019
1 parent 927c850 commit 8b95b0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
-e git+https://github.com/luissilva1044894/pyrez.git@master#egg=pyrez[docs]
pyrez[docs]>=1.0.1,<2
4 changes: 2 additions & 2 deletions pyrez/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
__license__ = "MIT"
__package_name__ = "pyrez"
__url__ = "https://luissilva1044894.github.io/Pyrez/"
__version__ = "0.9.9" #'.'.join(map(str, (0, 9, 9)))
__version__ = "1.0.1" #'.'.join(map(str, (1, 0, 0)))
__title__ = "{}-{}".format(__package_name__.capitalize(), __version__)
version = __version__

from collections import namedtuple
version_info = namedtuple("VersionInfo", "major minor micro releaselevel serial")(major=0, minor=9, micro=9, releaselevel="beta", serial=0)
version_info = namedtuple("VersionInfo", "major minor micro releaselevel serial")(major=1, minor=0, micro=1, releaselevel="final", serial=0)

__all__ = (
"__title__",
Expand Down

0 comments on commit 8b95b0b

Please sign in to comment.