diff --git a/README.rst b/README.rst index 4ddcb4c..8b7f4c0 100644 --- a/README.rst +++ b/README.rst @@ -63,6 +63,8 @@ Bugs, issues and contributing Contributions to this project are welcome and encouraged ... Issues in the project repository are the common way to raise an information. +**Note:** if you have an issue, please provide me if possible the visual studio project involved. + For QMake --------- diff --git a/cmake_converter/__init__.py b/cmake_converter/__init__.py index fe07ca9..c825eea 100644 --- a/cmake_converter/__init__.py +++ b/cmake_converter/__init__.py @@ -27,7 +27,7 @@ """ # Application version and manifest -VERSION = (0, 0, 2) +VERSION = (1, 0, 0) __application__ = u"CMakeConverter" __short_version__ = '.'.join((str(each) for each in VERSION[:2])) __version__ = '.'.join((str(each) for each in VERSION[:4])) diff --git a/cmake_converter/data_converter.py b/cmake_converter/data_converter.py index 55f34e1..32e4be1 100644 --- a/cmake_converter/data_converter.py +++ b/cmake_converter/data_converter.py @@ -126,7 +126,7 @@ def create_data(self): def close_cmake_file(self): """ - Close the CmakeLists.txt file + Close the CMakeLists.txt file """ diff --git a/setup.py b/setup.py index e48cd72..3472eeb 100644 --- a/setup.py +++ b/setup.py @@ -67,7 +67,7 @@ install_requires=install_requires, classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: End Users/Desktop', 'Intended Audience :: Developers',