Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Jul 2, 2018
1 parent 53b40a8 commit d040e1e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
commit = True
tag = True
message = "Release {new_version}"
current_version = 0.9.0
current_version = 1.0.0

[bumpversion:file:setup.py]
search = version='{current_version}'
Expand Down
8 changes: 3 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,15 @@ jobs:
script:
- pytest -vvv --capture=no --showlocals --cov mirakuru tests/
- stage: deploy
python: '3.6'
if: tag = true
python: 3.6
if: tag IS present
script: skip
after_success: skip
deploy:
provider: pypi
user: fizyk
password:
secure: IBVXG0zLKsBkzdeoC33Lxir01jbvDHdjQ81CPC8PbDPCmUozXgf9eqRFV5VOIYQOboTBzQYRq7RB8efeNKSH3nKf73iahwIYf4ezIxRzUaMzoY4GkyrC/0fQhMk1lAjexrRM1f2o7TIAALPUDyB/EaRcPCBEghxscQEeTlAw08c=
on:
all_branches: true
tags: true
repo: ClearcodeHQ/mirakuru
python: 3.6
distributions: sdist bdist_wheel
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CHANGELOG
=========

unreleased
1.0.0
----------

- [enhancement] Do not fail if processes child throw EPERM error during clean up phase
Expand Down
14 changes: 7 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ This is where you should consider using **mirakuru** to add superpowers to your
:target: https://pypi.python.org/pypi/mirakuru/
:alt: Latest PyPI version

.. image:: https://readthedocs.org/projects/mirakuru/badge/?version=v0.9.0
:target: http://mirakuru.readthedocs.io/en/v0.9.0/
.. image:: https://readthedocs.org/projects/mirakuru/badge/?version=v1.0.0
:target: http://mirakuru.readthedocs.io/en/v1.0.0/
:alt: Documentation Status

.. image:: https://img.shields.io/pypi/wheel/mirakuru.svg
Expand All @@ -31,16 +31,16 @@ This is where you should consider using **mirakuru** to add superpowers to your
Package status
--------------

.. image:: https://travis-ci.org/ClearcodeHQ/mirakuru.svg?branch=v0.9.0
.. image:: https://travis-ci.org/ClearcodeHQ/mirakuru.svg?branch=v1.0.0
:target: https://travis-ci.org/ClearcodeHQ/mirakuru
:alt: Tests

.. image:: https://coveralls.io/repos/ClearcodeHQ/mirakuru/badge.png?branch=v0.9.0
:target: https://coveralls.io/r/ClearcodeHQ/mirakuru?branch=v0.9.0
.. image:: https://coveralls.io/repos/ClearcodeHQ/mirakuru/badge.png?branch=v1.0.0
:target: https://coveralls.io/r/ClearcodeHQ/mirakuru?branch=v1.0.0
:alt: Coverage Status

.. image:: https://requires.io/github/ClearcodeHQ/mirakuru/requirements.svg?tag=v0.9.0
:target: https://requires.io/github/ClearcodeHQ/mirakuru/requirements/?tag=v0.9.0
.. image:: https://requires.io/github/ClearcodeHQ/mirakuru/requirements.svg?tag=v1.0.0
:target: https://requires.io/github/ClearcodeHQ/mirakuru/requirements/?tag=v1.0.0
:alt: Requirements Status


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def read(fname):

setup(
name='mirakuru',
version='0.9.0',
version='1.0.0',
description='Process executor for tests.',
long_description=(
read('README.rst') + '\n\n' + read('CHANGES.rst')
Expand Down
2 changes: 1 addition & 1 deletion src/mirakuru/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
ProcessExitedWithError,
)

__version__ = '0.9.0'
__version__ = '1.0.0'

__all__ = (
'Executor',
Expand Down

0 comments on commit d040e1e

Please sign in to comment.