Skip to content

Commit

Permalink
version 4.2 mana
Browse files Browse the repository at this point in the history
  • Loading branch information
misakar committed Jan 5, 2016
1 parent 737cdfe commit a914b9a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ And you can run your project using <code>$ python manage.py runserver</code> <br
Now, you can goto http://127.0.0.1:5000/test and check if everything is ok :)

### => mana version
Show the version info: latest version: 4.1
Show the version info: latest version: 4.2


## Install mana
Expand Down
2 changes: 1 addition & 1 deletion mana/mana.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def startproject(project_name):
@click.command()
def version():
"""mana version"""
click.echo("mana version: 4.1 \/ ")
click.echo("mana version: 4.2 \/ ")


# mana command set
Expand Down
4 changes: 2 additions & 2 deletions mana/templates/auth/_auth_forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
_auth_forms_code = '''# coding: utf-8
from flask_wtf import Form
from wtforms import StringField, SubmitField
from wtforms import StringField, PasswordField
from wtforms.validators import DataRequired
class LoginForm(Form):
username = StringField('username', validators=[DataRequired()])
password = StringField('password', validators=[DataRequired()])
password = PasswordField('password', validators=[DataRequired()])
submit = SubmitField('login!')
'''
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

setup(
name='mana',
version='4.1',
version='4.2',
packages=find_packages(),
url='https://github.com/neo1218/mana',
license='MIT',
Expand Down

0 comments on commit a914b9a

Please sign in to comment.