Skip to content

Commit 2fdc8ab

Browse files
committed
* Bumped version to 0.1.0
1 parent 66bf101 commit 2fdc8ab

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.pyc
2+
*~

pymtp.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python
2+
# -*- coding: iso-8859-1 -*-
23
#
34
# A Ctypes wrapper to LibMTP
45
# Developed by: Nick Devito (nick@nick125.com)
@@ -22,9 +23,9 @@
2223
>>>
2324
"""
2425

25-
__VERSION__ = "0.0.5"
26-
__VERSION_MACRO__ = 5
27-
__VERSION_MINOR__ = 0
26+
__VERSION__ = "0.1.0"
27+
__VERSION_MACRO__ = 0
28+
__VERSION_MINOR__ = 1
2829
__VERSION_MAJOR__ = 0
2930
__VERSION_TUPLE__ = (__VERSION_MAJOR__, __VERSION_MINOR__, __VERSION_MACRO__)
3031
__AUTHOR__ = "Nick Devito (nick@nick125.com)"

0 commit comments

Comments
 (0)