updated version number & changelog

This commit is contained in:
Goffi 2011-06-20 14:30:45 +02:00
parent 335aefc5ed
commit a4d71cb78e
4 changed files with 8 additions and 3 deletions

View File

@ -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

2
README
View File

@ -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.

2
gcp
View File

@ -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

View File

@ -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)',