Skip to content

Commit

Permalink
Prepare for release 0.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
RKrahl committed May 28, 2017
1 parent ed38911 commit dde621a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
History of changes to pytest-dependency
=======================================

* Version 0.2.0 (not yet released)
* Version 0.2 (2017-05-28)

** New features

Expand All @@ -10,7 +10,7 @@
+ Issue #4: Add a depend() function to add a dependency to a test at
runtime.

* Version 0.1.0 (2017-01-29)
* Version 0.1 (2017-01-29)

+ Initial release as an independent Python module.

Expand Down
4 changes: 2 additions & 2 deletions doc/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1'
version = '0.2'
# The full version, including alpha/beta/rc tags.
release = '0.1'
release = '0.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pytest_dependency.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import pytest

__version__ = "0.1"
__version__ = "0.2"


class DependencyItemStatus(object):
Expand Down

0 comments on commit dde621a

Please sign in to comment.