diff --git a/Makefile b/Makefile index 5aefef2..13b5f0a 100644 --- a/Makefile +++ b/Makefile @@ -10,3 +10,9 @@ check: coverage: coverage erase coverage run --source marshmallow_jsonschema -m py.test -v + +pypitest: + python setup.py sdist upload -r pypitest + +pypi: + python setup.py sdist upload -r pypi diff --git a/setup.py b/setup.py index 469924b..fa0f403 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def read(fname): setup( name='marshmallow-jsonschema', - version='0.2.1', + version='0.3.0', description='JSON Schema Draft v4 (http://json-schema.org/) formatting with marshmallow', long_description=long_description, author='Stephen Fuhry',