Skip to content

Commit

Permalink
Set version to 1.0.0, make lib as stable
Browse files Browse the repository at this point in the history
  • Loading branch information
algorys committed Feb 14, 2018
1 parent 2e19284 commit 7cd5548
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
---------

Expand Down
2 changes: 1 addition & 1 deletion cmake_converter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]))
Expand Down
2 changes: 1 addition & 1 deletion cmake_converter/data_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def create_data(self):

def close_cmake_file(self):
"""
Close the CmakeLists.txt file
Close the CMakeLists.txt file
"""

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 7cd5548

Please sign in to comment.