Browse Source

This is 1.0

After being way to long in development
I decided to release the first version of FlaskBB.
With this release I have set myself a goal to make more
releases of FlaskBB which will hopefully accelerate the development of
FlaskBB (which stagnated a bit).
Peter Justin 8 years ago
parent
commit
e0720dbc63
3 changed files with 7 additions and 4 deletions
  1. 5 2
      CHANGES
  2. 1 1
      flaskbb/__init__.py
  3. 1 1
      setup.py

+ 5 - 2
CHANGES

@@ -3,7 +3,10 @@ Changelog
 
 Here you can see the full list of changes between each release.
 
-Version 0.1
+
+Version 1.0
 -----------
 
-* Not finished yet
+Released on May 5th, 2017.
+
+* First release of FlaskBB

+ 1 - 1
flaskbb/__init__.py

@@ -9,5 +9,5 @@
     :copyright: (c) 2014 by the FlaskBB Team.
     :license: BSD, see LICENSE for more details.
 """
-__version__ = '1.0.dev0'  # noqa
+__version__ = '1.0'  # noqa
 from flaskbb.app import create_app  # noqa

+ 1 - 1
setup.py

@@ -49,7 +49,7 @@ class PyTestCommand(TestCommand):
 
 setup(
     name='FlaskBB',
-    version='1.0.dev0',
+    version='1.0',
     url='http://github.com/sh4nks/flaskbb/',
     license='BSD',
     author='Peter Justin',