Browse code

* S3/PkgInfo.py, NEWS, TODO: Updated for 0.9.9-pre5

git-svn-id: https://s3tools.svn.sourceforge.net/svnroot/s3tools/s3cmd/trunk@350 830e0280-6d2a-0410-9c65-932aecc39d9d

Michal Ludvig authored on 2009/01/22 10:44:05
Showing 4 changed files
... ...
@@ -1,5 +1,12 @@
1 1
 2009-01-22  Michal Ludvig  <michal@logix.cz>
2 2
 
3
+	* Released version 0.9.9-pre5
4
+	  ---------------------------
5
+
6
+	* S3/PkgInfo.py, NEWS, TODO: Updated for 0.9.9-pre5
7
+
8
+2009-01-22  Michal Ludvig  <michal@logix.cz>
9
+
3 10
 	* run-tests.py: Updated paths for the new sync
4 11
 	  semantics.
5 12
 	* s3cmd, S3/S3.py: Small fixes to make testsuite happy.
... ...
@@ -1,7 +1,9 @@
1
-s3cmd 0.9.9-pre5
1
+s3cmd 0.9.9-pre5 - 2009-01-22
2 2
 ================
3 3
 * New command 'setacl' for setting ACL on existing objects.
4 4
 * Recursive [put] with a slightly different semantic.
5
+* Multiple sources for [sync] and slightly different semantics.
6
+* Support for --dry-run with [sync]
5 7
 
6 8
 s3cmd 0.9.9-pre4 - 2008-12-30
7 9
 ================
... ...
@@ -1,5 +1,5 @@
1 1
 package = "s3cmd"
2
-version = "0.9.9-pre4"
2
+version = "0.9.9-pre5"
3 3
 url = "http://s3tools.logix.cz"
4 4
 license = "GPL version 2"
5 5
 short_description = "S3cmd is a tool for managing Amazon S3 storage space."
... ...
@@ -2,15 +2,14 @@ TODO list for s3cmd project
2 2
 ===========================
3 3
 
4 4
 - For 0.9.9
5
-  - Recursive processing / multiple sources with most commands.
6
-    - Incl. recursive cp/mv on remote "folders".
7
-  - Sanitize put/get behaviour.
8
-    For instance 'get s3://../blah/x.jpg' should save it to
9
-	x.jpg and not attempt blah/x.jpg.
10
-    Similar thing, 'put /foo/bar/xyz.jpg s3://bucket/dome/path/'
11
-    should save it to s3://bucket/dome/path/xyz.jpg
5
+  - Enable --exclude for [put], [get] and [del]
6
+  - Enable --dry-run for [put], [get] and [del], reject
7
+    for all others.
12 8
   - Sync should work for one file, for example
13 9
     s3cmd sync /etc/passwd s3://bucket/passwd
10
+  - Add testsuite for new put, get and sync semantic.
11
+  - Recursive processing / multiple sources with most commands.
12
+    - Incl. recursive cp/mv on remote "folders".
14 13
   - Document --recursive and --force for buckets
15 14
   - Allow change /tmp to somewhere else
16 15
   - With --guess-mime use 'magic' module if available.