From 96d712d8b965580e587954ec3aea5316ef1a4292 Mon Sep 17 00:00:00 2001 From: Romain Dorgueil Date: Mon, 1 May 2017 19:09:59 +0200 Subject: [PATCH] Increment minor version number. --- README.rst | 12 ++++++------ docs/contribute/index.rst | 2 +- docs/faq.rst | 2 +- docs/install.rst | 4 ++-- docs/tutorial/tut02.rst | 4 ++-- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.rst b/README.rst index a111622..0be6e72 100644 --- a/README.rst +++ b/README.rst @@ -15,20 +15,20 @@ Data-processing. By monkeys. For humans. :target: https://pypi.python.org/pypi/bonobo :alt: Versions -.. image:: https://readthedocs.org/projects/bonobo/badge/?version=0.2 +.. image:: https://readthedocs.org/projects/bonobo/badge/?version=0.3 :target: http://docs.bonobo-project.org/ :alt: Documentation -.. image:: https://travis-ci.org/python-bonobo/bonobo.svg?branch=0.2 +.. image:: https://travis-ci.org/python-bonobo/bonobo.svg?branch=0.3 :target: https://travis-ci.org/python-bonobo/bonobo :alt: Continuous Integration -.. image:: https://landscape.io/github/python-bonobo/bonobo/0.2/landscape.svg?style=flat - :target: https://landscape.io/github/python-bonobo/bonobo/0.2 +.. image:: https://landscape.io/github/python-bonobo/bonobo/0.3/landscape.svg?style=flat + :target: https://landscape.io/github/python-bonobo/bonobo/0.3 :alt: Code Health from landscape -.. image:: https://img.shields.io/coveralls/python-bonobo/bonobo/0.2.svg - :target: https://coveralls.io/github/python-bonobo/bonobo?branch=0.2 +.. image:: https://img.shields.io/coveralls/python-bonobo/bonobo/0.3.svg + :target: https://coveralls.io/github/python-bonobo/bonobo?branch=0.3 :alt: Coverage Bonobo is a data-processing library for python 3.5+ that emphasises writing diff --git a/docs/contribute/index.rst b/docs/contribute/index.rst index 6ee7e31..3c3f6e9 100644 --- a/docs/contribute/index.rst +++ b/docs/contribute/index.rst @@ -58,7 +58,7 @@ Guidelines License ::::::: -`Bonobo is released under the apache license `_. +`Bonobo is released under the apache license `_. License for non lawyers ::::::::::::::::::::::: diff --git a/docs/faq.rst b/docs/faq.rst index d529a7c..6938dcd 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -41,7 +41,7 @@ context. The API may evolve a bit though, because I feel it's a bit hackish, as it is. The concept will stay the same, but we need to find a better way to apply it. -To understand how it works today, look at https://github.com/python-bonobo/bonobo/blob/0.2/bonobo/io/csv.py#L63 and class hierarchy. +To understand how it works today, look at https://github.com/python-bonobo/bonobo/blob/0.3/bonobo/io/csv.py#L63 and class hierarchy. What is a plugin? Do I need to write one? ----------------------------------------- diff --git a/docs/install.rst b/docs/install.rst index 36c7024..ec617fb 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -17,7 +17,7 @@ but editable installs (see below). .. code-block:: shell-session - $ pip install git+https://github.com/python-bonobo/bonobo.git@0.2#egg=bonobo + $ pip install git+https://github.com/python-bonobo/bonobo.git@0.3#egg=bonobo Editable install :::::::::::::::: @@ -28,7 +28,7 @@ python interpreter. .. code-block:: shell-session - $ pip install --editable git+https://github.com/python-bonobo/bonobo.git@0.2#egg=bonobo + $ pip install --editable git+https://github.com/python-bonobo/bonobo.git@0.3#egg=bonobo .. note:: You can also use the `-e` flag instead of the long version. diff --git a/docs/tutorial/tut02.rst b/docs/tutorial/tut02.rst index 1f3f782..0c96a40 100644 --- a/docs/tutorial/tut02.rst +++ b/docs/tutorial/tut02.rst @@ -46,7 +46,7 @@ We'll use a text file that was generated using Bonobo from the "liste-des-cafes- Mairie de Paris under the Open Database License (ODbL). You can `explore the original dataset `_. -You'll need the `example dataset `_, +You'll need the `example dataset `_, available in **Bonobo**'s repository. .. literalinclude:: ../../bonobo/examples/tutorials/tut02_01_read.py @@ -75,7 +75,7 @@ containerization capabilities are provided by an optional and separate python pa It also change a bit the way you can configure service dependencies. The CLI won't run the `if __name__ == '__main__'` block, and thus it won't get the configured services passed to :func:`bonobo.run`. Instead, one option to configure services is to define a `get_services()` function in a -`_services.py `_ file. +`_services.py `_ file. There will be more options using the CLI or environment to override things soon.