Skip to content

Commit 59acde7

Browse files
committed
launch v1.0.1
1 parent bec4308 commit 59acde7

File tree

6 files changed

+8
-4
lines changed

6 files changed

+8
-4
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
__pycache__/*
1+
__pycahce__/*
2+
*.pyc
23
build/
34
dist/
45
*.egg-info/

contact_widget/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
__pycahce__/*
2+
*.pyc

contact_widget/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
22

3-
__VERSION__ = '1.0.0'
3+
__VERSION__ = '1.0.1'
44
__AUTHOR__ = 'Agus Makmun (Summon Agus)'
55
__AUTHOR_EMAIL__ = '[email protected]'

contact_widget_demo/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
__pycahce__/*
2+
*.pyc
23
db.sqlite3
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
__pycache__/*
1+
__pycahce__/*
2+
*.pyc
23
local_settings.py

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from contact_widget import (__VERSION__, __AUTHOR__, __AUTHOR_EMAIL__)
77

88
setup(
9-
name="contact_widget",
9+
name="django-contact-widget",
1010
packages=find_packages(exclude=["*.demo"]),
1111
version=__VERSION__,
1212
url="https://github.com/agusmakmun/django-contact-widget/",

0 commit comments

Comments
 (0)