Skip to content

Commit 7dcd200

Browse files
authored
Merge pull request #51 from LeapBeyond/release/1.2.2
Create a new release
2 parents 2756948 + 7d77aa1 commit 7dcd200

File tree

6 files changed

+38
-6
lines changed

6 files changed

+38
-6
lines changed

.readthedocs.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# .readthedocs.yml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
6+
version: 2
7+
8+
# Build documentation in the docs/ directory with Sphinx
9+
sphinx:
10+
configuration: docs/conf.py
11+
12+
# Optionally set the version of Python and requirements required to build your docs
13+
python:
14+
version: 3.8
15+
install:
16+
- requirements: requirements/python-dev

README.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11

22
.. NOTES FOR CREATING A RELEASE:
33
..
4-
.. * bump the version number
4+
.. * bump the version number in scrubadub/__init__.py
55
.. * update docs/changelog.rst
66
.. * git push
7-
.. * python setup.py sdist upload
87
.. * create a release https://github.com/LeapBeyond/scrubadub/releases
8+
.. * This should trigger a github action to upload to pypi
9+
.. * ReadTheDocs.io should see any changes and also rebuild the docs
910
1011
1112
scrubadub

docs/changelog.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,19 @@ latest changes in development for next release
1111

1212
.. THANKS FOR CONTRIBUTING; MENTION WHAT YOU DID IN THIS SECTION HERE!
1313
14+
1.2.2
15+
-----
16+
17+
`LeapBeyond <http://leapbeyond.ai/>`_ are now supporting scrubadub with maintanance and development.
18+
19+
* bug fixes:
20+
21+
* StopIteration no longer supported in recent python varions (`#41`_ via `@roman-y-korolev`_)
22+
23+
* Fix test runner with python 3 (`#42`_ via `@roman-y-korolev`_)
24+
25+
* Update documentation to reflect new repository location (`#49`_)
26+
1427
1.2.1
1528
-----
1629

@@ -112,4 +125,7 @@ latest changes in development for next release
112125
.. _#29: https://github.com/LeapBeyond/scrubadub/issues/29
113126
.. _#31: https://github.com/LeapBeyond/scrubadub/pull/31
114127
.. _#32: https://github.com/LeapBeyond/scrubadub/pull/32
128+
.. _#41: https://github.com/LeapBeyond/scrubadub/pull/41
129+
.. _#42: https://github.com/LeapBeyond/scrubadub/pull/42
115130
.. _#43: https://github.com/LeapBeyond/scrubadub/pull/43
131+
.. _#49: https://github.com/LeapBeyond/scrubadub/pull/49

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ incorporating it into your python scripts like this:
4949
5050
5151
There are many ways to tailor the behavior of ``scrubadub`` using
52-
:ref:`different ``Detector`` and ``Filth`` classes <under_the_hood>`. These
52+
:ref:`different Detector and Filth classes <under_the_hood>`. These
5353
:ref:`advanced techniques <advanced_usage>` allow users to fine-tune the manner
5454
in which ``scrubadub`` cleans dirty dirty text.
5555

requirements/python-dev

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# install everything in the python requirements too. this may be
2-
# needed by readthedocs?!?!
1+
# install everything in the python requirements too.
32
-r python
43

54
# needed for tests/run.py script to read .travis.yml file

scrubadub/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from . import filth
55
from . import detectors
66

7-
__version__ = VERSION = "1.2.1"
7+
__version__ = VERSION = "1.2.2"
88

99

1010
def clean(text, cls=None, **kwargs):

0 commit comments

Comments
 (0)