Skip to content

Commit dde621a

Browse files
committed
Prepare for release 0.2.
1 parent ed38911 commit dde621a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CHANGES

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
History of changes to pytest-dependency
22
=======================================
33

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

66
** New features
77

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

13-
* Version 0.1.0 (2017-01-29)
13+
* Version 0.1 (2017-01-29)
1414

1515
+ Initial release as an independent Python module.
1616

doc/src/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@
5252
# built documents.
5353
#
5454
# The short X.Y version.
55-
version = '0.1'
55+
version = '0.2'
5656
# The full version, including alpha/beta/rc tags.
57-
release = '0.1'
57+
release = '0.2'
5858

5959
# The language for content autogenerated by Sphinx. Refer to documentation
6060
# for a list of supported languages.

pytest_dependency.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import pytest
99

10-
__version__ = "0.1"
10+
__version__ = "0.2"
1111

1212

1313
class DependencyItemStatus(object):

0 commit comments

Comments
 (0)