Skip to content

Commit

Permalink
update MANIFEST
Browse files Browse the repository at this point in the history
  • Loading branch information
areski committed Oct 3, 2012
1 parent 62ca680 commit 3a52cfe
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGES.txt
@@ -1,6 +1,12 @@
Changelog
=========

0.4.2 (2012-10-03)
------------------

* fix MANIFEST


0.4.1 (2012-10-03)
------------------

Expand Down
5 changes: 1 addition & 4 deletions MANIFEST.in
@@ -1,9 +1,6 @@
global-exclude *.pyc

recursive-include country_dialcode/utils *
recursive-include country_dialcode/templatetags *
recursive-include country_dialcode/fixtures *
recursive-include country_dialcode/tests *
recursive-include country_dialcode *

include README.rst
include MIT-LICENSE.txt
Expand Down
2 changes: 1 addition & 1 deletion country_dialcode/__init__.py
Expand Up @@ -9,7 +9,7 @@
# :license: MIT, see MIT-LICENSE.txt for more details.


VERSION = (0, 4, 1, "")
VERSION = (0, 4, 2, "")
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
__author__ = "Arezqui Belaid"
__contact__ = "areski@gmail.com"
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -50,7 +50,7 @@
# The short X.Y version.
version = '0.4'
# The full version, including alpha/beta/rc tags.
release = '0.4.1'
release = '0.4.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -92,3 +92,4 @@ def parse_dependency_links(file_name, install_flag=False):
'Topic :: Software Development :: Libraries :: Python Modules'
],
)

0 comments on commit 3a52cfe

Please sign in to comment.