diff --git a/docs/install.rst b/docs/install.rst index b50d6ad5..ad90b055 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -50,18 +50,18 @@ Manual installation ------------------- You can download and install IPMininet. -You can change the installed version by replacing "v0.9" in the following commands. +You can change the installed version by replacing "v1.0" in the following commands. If you have pip above **18.1**, execute: .. code-block:: bash - $ sudo pip install --upgrade git+https://github.com/cnp3/ipmininet.git@v0.9 + $ sudo pip install --upgrade git+https://github.com/cnp3/ipmininet.git@v1.0 If you have an older version of pip, use: .. code-block:: bash - $ sudo pip install --process-dependency-links --upgrade git+https://github.com/cnp3/ipmininet.git@v0.9 + $ sudo pip install --process-dependency-links --upgrade git+https://github.com/cnp3/ipmininet.git@v1.0 Then, you can install all the daemons: diff --git a/setup.py b/setup.py index 2a076707..7739a400 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ from setuptools.command.develop import develop from setuptools.command.install import install -VERSION = '0.9' +VERSION = '1.0' modname = distname = 'ipmininet' @@ -81,8 +81,8 @@ def run(self): version=VERSION, description='A mininet extension providing components to emulate IP' 'networks running multiple protocols.', - author='Olivier Tilmans', - author_email='olivier.tilmans@uclouvain.be', + author='Olivier Tilmans, Mathieu Jadin', + author_email='olivier.tilmans@uclouvain.be, mathieu.jadin@uclouvain.be', packages=find_packages(), include_package_data=True, classifiers=[