Skip to content

Commit f16353d

Browse files
committed
Bump version
1 parent dbf73dd commit f16353d

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

.gitchangelog.rc

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
#
5959

6060
ignore_regexps = [
61+
r'^[uU]pdate [cC]hangelog.*$',
6162
r'^[fF]ix [tT]ypo.*$',
6263
r'^[tT]est fix.*$',
6364
r'^[tT]ravis fix.*$',
@@ -160,7 +161,7 @@ body_process = (strip | ReSub(r'\*', r'\\*') | ReSub(r'((^|\n)[A-Z]\w+(-\w+)*: .
160161
#
161162
# Available constructs are those listed in ``body_process`` doc.
162163
subject_process = (
163-
strip | ReSub(r'\*', r'\\*') | ReSub( # noqa
164+
strip | ReSub('documentaion', 'documentation') | ReSub('changeing', 'changing') | ReSub(r'\*', r'\\*') | ReSub( # noqa
164165
r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n@]*)(@[a-z]+\s+)*$', r'\4') |
165166
SetIfEmpty("No commit message.") | ucfirst | final_dot) # noqa
166167

docs/source/changelog.rst

+21
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@ Changelog
22
=========
33

44

5+
(development)
6+
-------------
7+
- Add documentation for beautifulsoup post-processor. [Chris Sewell]
8+
9+
- Add beautifulsoup post-processor. [Chris Sewell]
10+
11+
- Add header info for pytest execution. [Chris Sewell]
12+
13+
- Add minor docstring update. [Chris Sewell]
14+
15+
16+
v0.5.1 (2019-08-12)
17+
-------------------
18+
- Include package data. [Chris Sewell]
19+
20+
21+
v0.5.0 (2019-08-12)
22+
-------------------
23+
- Fix dependency. [Chris Sewell]
24+
25+
526
v0.4.0 (2019-08-12)
627
-------------------
728
- Added regex-replacement functionality (#1) [Chris Sewell]

pytest_notebook/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
33
A pytest plugin for testing Jupyter Notebooks.
44
"""
5-
__version__ = "0.5.1"
5+
__version__ = "0.5.2"

pytest_notebook/post_processors.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def coalesce_streams(
114114
output.text = RGX_CARRIAGERETURN.sub("", output.text)
115115

116116
# We also want to ensure stdout and stderr are always in the same consecutive order,
117-
# because, they are asynchronous, so order isn't guaranteed.
117+
# because they are asynchronous, so order isn't guaranteed.
118118
for i, output in enumerate(new_outputs):
119119
if output.output_type == "stream" and output.name == "stderr":
120120
if (

0 commit comments

Comments
 (0)