Skip to content

Commit 3a52cfe

Browse files
committed
update MANIFEST
1 parent 62ca680 commit 3a52cfe

5 files changed

Lines changed: 10 additions & 6 deletions

File tree

CHANGES.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
=========
33

4+
0.4.2 (2012-10-03)
5+
------------------
6+
7+
* fix MANIFEST
8+
9+
410
0.4.1 (2012-10-03)
511
------------------
612

MANIFEST.in

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
global-exclude *.pyc
22

3-
recursive-include country_dialcode/utils *
4-
recursive-include country_dialcode/templatetags *
5-
recursive-include country_dialcode/fixtures *
6-
recursive-include country_dialcode/tests *
3+
recursive-include country_dialcode *
74

85
include README.rst
96
include MIT-LICENSE.txt

country_dialcode/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# :license: MIT, see MIT-LICENSE.txt for more details.
1010

1111

12-
VERSION = (0, 4, 1, "")
12+
VERSION = (0, 4, 2, "")
1313
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
1414
__author__ = "Arezqui Belaid"
1515
__contact__ = "areski@gmail.com"

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
# The short X.Y version.
5151
version = '0.4'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '0.4.1'
53+
release = '0.4.2'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,4 @@ def parse_dependency_links(file_name, install_flag=False):
9292
'Topic :: Software Development :: Libraries :: Python Modules'
9393
],
9494
)
95+

0 commit comments

Comments
 (0)