Skip to content

Commit

Permalink
Merge pull request #51 from LeapBeyond/release/1.2.2
Browse files Browse the repository at this point in the history
Create a new release
  • Loading branch information
thomasbird authored Sep 10, 2020
2 parents 2756948 + 7d77aa1 commit 7dcd200
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 6 deletions.
16 changes: 16 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py

# Optionally set the version of Python and requirements required to build your docs
python:
version: 3.8
install:
- requirements: requirements/python-dev
5 changes: 3 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@

.. NOTES FOR CREATING A RELEASE:
..
.. * bump the version number
.. * bump the version number in scrubadub/__init__.py
.. * update docs/changelog.rst
.. * git push
.. * python setup.py sdist upload
.. * create a release https://github.com/LeapBeyond/scrubadub/releases
.. * This should trigger a github action to upload to pypi
.. * ReadTheDocs.io should see any changes and also rebuild the docs
scrubadub
Expand Down
16 changes: 16 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,19 @@ latest changes in development for next release

.. THANKS FOR CONTRIBUTING; MENTION WHAT YOU DID IN THIS SECTION HERE!
1.2.2
-----

`LeapBeyond <http://leapbeyond.ai/>`_ are now supporting scrubadub with maintanance and development.

* bug fixes:

* StopIteration no longer supported in recent python varions (`#41`_ via `@roman-y-korolev`_)

* Fix test runner with python 3 (`#42`_ via `@roman-y-korolev`_)

* Update documentation to reflect new repository location (`#49`_)

1.2.1
-----

Expand Down Expand Up @@ -112,4 +125,7 @@ latest changes in development for next release
.. _#29: https://github.com/LeapBeyond/scrubadub/issues/29
.. _#31: https://github.com/LeapBeyond/scrubadub/pull/31
.. _#32: https://github.com/LeapBeyond/scrubadub/pull/32
.. _#41: https://github.com/LeapBeyond/scrubadub/pull/41
.. _#42: https://github.com/LeapBeyond/scrubadub/pull/42
.. _#43: https://github.com/LeapBeyond/scrubadub/pull/43
.. _#49: https://github.com/LeapBeyond/scrubadub/pull/49
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ incorporating it into your python scripts like this:
There are many ways to tailor the behavior of ``scrubadub`` using
:ref:`different ``Detector`` and ``Filth`` classes <under_the_hood>`. These
:ref:`different Detector and Filth classes <under_the_hood>`. These
:ref:`advanced techniques <advanced_usage>` allow users to fine-tune the manner
in which ``scrubadub`` cleans dirty dirty text.

Expand Down
3 changes: 1 addition & 2 deletions requirements/python-dev
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# install everything in the python requirements too. this may be
# needed by readthedocs?!?!
# install everything in the python requirements too.
-r python

# needed for tests/run.py script to read .travis.yml file
Expand Down
2 changes: 1 addition & 1 deletion scrubadub/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from . import filth
from . import detectors

__version__ = VERSION = "1.2.1"
__version__ = VERSION = "1.2.2"


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

0 comments on commit 7dcd200

Please sign in to comment.