From 9f6458438c1d8d449df65f40170fe393666a9b3f Mon Sep 17 00:00:00 2001 From: Matthieu Estrada Date: Wed, 21 Feb 2018 16:29:30 +0100 Subject: [PATCH] Set version to 1.1.0 --- README.rst | 3 +++ cmake_converter/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index f2e8cb3..f253935 100644 --- a/README.rst +++ b/README.rst @@ -11,6 +11,9 @@ CMake Converter .. image:: http://readthedocs.org/projects/cmakeconverter/badge/?version=develop :target: http://cmakeconverter.readthedocs.io/en/develop/?badge=develop :alt: Documentation Status +.. image:: https://badge.fury.io/py/cmake_converter.svg + :target: https://badge.fury.io/py/cmake_converter + :alt: Most recent PyPi version .. image:: https://img.shields.io/badge/License-AGPL%20v3-blue.svg :target: http://www.gnu.org/licenses/agpl-3.0 :alt: License AGPL v3 diff --git a/cmake_converter/__init__.py b/cmake_converter/__init__.py index c825eea..88f418b 100644 --- a/cmake_converter/__init__.py +++ b/cmake_converter/__init__.py @@ -27,7 +27,7 @@ """ # Application version and manifest -VERSION = (1, 0, 0) +VERSION = (1, 1, 0) __application__ = u"CMakeConverter" __short_version__ = '.'.join((str(each) for each in VERSION[:2])) __version__ = '.'.join((str(each) for each in VERSION[:4]))