Skip to content

Commit

Permalink
Merge pull request #16 from adamboche/contact
Browse files Browse the repository at this point in the history
Contact
  • Loading branch information
probot-auto-merge[bot] committed Jun 8, 2019
2 parents 96c277f + f009025 commit 1a3042e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.8
current_version = 0.1.9
commit = True
tag = True

Expand All @@ -18,3 +18,4 @@ replace = version = release = {new_version}
[bumpversion:file:src/marshmallow_union/__init__.py]
search = __version__ = {current_version}
replace = __version__ = {new_version}

4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ Overview
:alt: PyPI Package latest release
:target: https://pypi.org/pypi/marshmallow-union

.. |commits-since| image:: https://img.shields.io/github/commits-since/adamboche/python-marshmallow-union/v0.1.8.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/adamboche/python-marshmallow-union/v0.1.9.svg
:alt: Commits since latest release
:target: https://github.com/adamboche/python-marshmallow-union/compare/v0.1.8...master
:target: https://github.com/adamboche/python-marshmallow-union/compare/v0.1.9...master

.. |wheel| image:: https://img.shields.io/pypi/wheel/marshmallow-union.svg
:alt: PyPI Wheel
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
year = "2019"
author = "Adam Boche"
copyright = "{0}, {1}".format(year, author)
version = release = "0.1.8"
version = release = "version = release = 0.1.9"

pygments_style = "trac"
templates_path = ["."]
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def read(*names, **kwargs):

setup(
name="marshmallow-union",
version="0.1.8",
version="0.1.9",
description="Union fields for marshmallow.",
long_description="%s\n%s"
% (
Expand All @@ -42,7 +42,7 @@ def read(*names, **kwargs):
re.sub(":[a-z]+:`~?(.*?)`", r"``\1``", read("CHANGELOG.rst")),
),
author="Adam Boche",
author_email="2lSJlf2MCi6PIgNTboOp@cordaz.com",
author_email="adamboche@users.noreply.github.com",
url="https://github.com/adamboche/python-marshmallow-union",
packages=find_packages("src"),
package_dir={"": "src"},
Expand Down
2 changes: 1 addition & 1 deletion src/marshmallow_union/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ def deserialize(self, value, attr=None, data=None, **kwargs):
raise marshmallow.exceptions.ValidationError(message=errors, field_name=attr)


__version__ = "0.1.8"
__version__ = "__version__ = 0.1.9"

0 comments on commit 1a3042e

Please sign in to comment.