Skip to content

Commit

Permalink
promote to production
Browse files Browse the repository at this point in the history
  • Loading branch information
un33k committed Apr 12, 2015
1 parent 7c84c1f commit a635707
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 5 deletions.
58 changes: 55 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,57 @@
*.pyc
MANIFEST
dist/
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.0.0

Enhancement:

- Promoting to production grade

## 0.1.1

Enhancement:
Expand Down
2 changes: 1 addition & 1 deletion ipware/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-

__version__ = '0.1.1'
__version__ = '1.0.0'

default_app_config = 'ipware.apps.AppConfig'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
license = 'BSD'
install_requires = ['']
classifiers = [
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
Expand Down

0 comments on commit a635707

Please sign in to comment.