Skip to content

Commit

Permalink
chore: Bump version to 0.0.2-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
kgriffs committed Jan 22, 2013
1 parent 2b91261 commit 23f1b28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -40,7 +40,7 @@ $ pip install tox && tox

### Usage ###

More/better docs are on our TODO list, but in the meantime, here is a simple example showing how to create a Falcon-based API.
More/better docs are on the way, but in the meantime, here is a simple example showing how to create a Falcon-based API.

```python
class ThingsResource:
Expand Down
2 changes: 1 addition & 1 deletion falcon/version.py
Expand Up @@ -16,7 +16,7 @@
"""

VERSION_TUPLE = (0, 0, 1, '-dev')
VERSION_TUPLE = (0, 0, 2, '-dev')

version = '.'.join(map(str, VERSION_TUPLE[:-1])) + VERSION_TUPLE[-1]
"""Current version of Falcon."""

0 comments on commit 23f1b28

Please sign in to comment.