diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7c8b7bbc..a698a225 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,10 @@ Changelog --------- +1.1 (2015-10-04) +~~~~~~~~~~~~~~~~ +* Suupport for Circle CI + 1.0 (2015-09-17) ~~~~~~~~~~~~~~~~ * Official coverage 4.0 support diff --git a/README.rst b/README.rst index 0772615f..d3c0840c 100644 --- a/README.rst +++ b/README.rst @@ -18,7 +18,6 @@ Coveralls for python `Coveralls.io`_ is service to publish your coverage stats online with a lot of `nice features`_. This package provides seamless integration with ``coverage.py`` in your python projects. -Only projects hosted on Github are supported. .. _Coveralls.io: http://coveralls.io .. _nice features: https://coveralls.io/features @@ -99,6 +98,7 @@ Usage (another CI) ~~~~~~~~~~~~~~~~~~ The difference from Travis is coveralls authentication via repo token. +Circle CI is supported since version 1.1, so no need to add env variables. It's required to set environment variable ``COVERALLS_REPO_TOKEN`` in you CI build. This is your own secret token, which is available at the right sidebar of your repository's page on Coveralls. Launch ``coveralls`` after gathering python coverage in your build script. diff --git a/setup.py b/setup.py index 660d5372..6570ff15 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ def run_tests(self): setup( name='coveralls', - version='1.0', + version='1.1', packages=['coveralls'], url='http://github.com/coagulant/coveralls-python', license='MIT',