Skip to content

Commit

Permalink
Bump version to 0.2.10rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
moreati committed Jan 28, 2021
1 parent 126dd7e commit f8062f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mitogen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@


#: Library version as a tuple.
__version__ = (0, 2, 9)
__version__ = (0, 2, 10, 'rc', 1)


#: This is :data:`False` in slave contexts. Previously it was used to prevent
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def grep_version():
for line in fp:
if line.startswith('__version__'):
_, _, s = line.partition('=')
return '.'.join(map(str, eval(s)))
return '%i.%i.%i%s%i' % eval(s)


def long_description():
Expand Down

0 comments on commit f8062f2

Please sign in to comment.