diff --git a/CHANGELOG b/CHANGELOG index d8b7213..1dbbdbb 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +gcp 0.1.3 (20/06/11): + - fixed exit status + - updated manpage with exit status + - gcp DIR1 DIR2 syntax fixed + - tests gcp 0.1.2 (16/06/11): - removed bad fd close - crash fix when source file can't be openned diff --git a/README b/README index c491dda..aa6abc2 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -gcp v0.1.2 +gcp v0.1.3 (c) Jérôme Poisson aka Goffi 2010, 2011 gcp (Goffi's cp) is a files copier. diff --git a/gcp b/gcp index bf2ae49..6b2f6a9 100755 --- a/gcp +++ b/gcp @@ -54,7 +54,7 @@ except ImportError, e: NAME = "gcp (Goffi's copier)" NAME_SHORT = "gcp" -VERSION = '0.1.2' +VERSION = '0.1.3' ABOUT = NAME+u" v"+VERSION+u""" (c) Jérôme Poisson (aka Goffi) 2010, 2011 diff --git a/setup.py b/setup.py index 14b9b08..224166f 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ from os import path name = 'gcp' setup(name=name, - version='0.1.2', + version='0.1.3', description=u"gcp is an advanced copy tool loosely inspired from cp", long_description=u'gcp is a command-line tool to copy files, loosely inspired from cp, but with high level functionalities such as progress bar, copy continuation on error, journaling to know which files were successfuly copied, name mangling to workaround filesystem limitations (FAT), unique copy queue, copy list managemet, command arguments close to cp', author='Goffi (Jérôme Poisson)',