From 4ab2bc77ff878b9ae2204eb48cea67f9a8a0d844 Mon Sep 17 00:00:00 2001 From: Maxandre Ogeret Date: Mon, 13 Feb 2023 22:08:54 +0200 Subject: [PATCH] Bump 0.4.1 --- setup.py | 17 +++++++---------- vcstool/__init__.py | 2 +- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/setup.py b/setup.py index ed8c075..72a8359 100644 --- a/setup.py +++ b/setup.py @@ -5,26 +5,23 @@ install_requires = ['PyYAML', 'setuptools'] setup( - name='vcstool', + name='vcstool2', version=__version__, install_requires=install_requires, packages=find_packages(), author='Dirk Thomas', author_email='web@dirk-thomas.net', - maintainer='Dirk Thomas', - maintainer_email='web@dirk-thomas.net', - url='https://github.com/dirk-thomas/vcstool', - download_url='http://download.ros.org/downloads/vcstool/', + maintainer='Maxandre Ogeret', + maintainer_email='MaxandreOgeret@users.noreply.github.com', + url='https://github.com/MaxandreOgeret/vcstool2', classifiers=['Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python', 'Topic :: Software Development :: Version Control', 'Topic :: Utilities'], - description='vcstool provides a command line tool to invoke vcs commands ' - 'on multiple repositories.', - long_description='\ -vcstool enables batch commands on multiple different vcs repositories. \ -Currently it supports git, hg, svn and bzr.', + description='vcstool provides a command line tool to invoke git commands on multiple repositories.', + long_description='vcstool2 enables batch commands on multiple different git repositories. It is a fork of Dirk ' + 'Thomas\' vcstool', license='Apache License, Version 2.0', data_files=[ ('share/vcstool-completion', [ diff --git a/vcstool/__init__.py b/vcstool/__init__.py index f5e9f24..5ecbdd3 100644 --- a/vcstool/__init__.py +++ b/vcstool/__init__.py @@ -1,3 +1,3 @@ from .clients import vcstool_clients # noqa -__version__ = '0.3.0' +__version__ = '0.4.1'