git-svn-id: https://s3tools.svn.sourceforge.net/svnroot/s3tools/s3cmd/trunk@359 830e0280-6d2a-0410-9c65-932aecc39d9d
| ... | ... |
@@ -1,3 +1,10 @@ |
| 1 |
+2009-01-27 Michal Ludvig <michal@logix.cz> |
|
| 2 |
+ |
|
| 3 |
+ * Released version 0.9.9-rc1 |
|
| 4 |
+ -------------------------- |
|
| 5 |
+ |
|
| 6 |
+ * S3/PkgInfo.py, NEWS, TODO: Updated for 0.9.9-rc1 |
|
| 7 |
+ |
|
| 1 | 8 |
2009-01-26 Michal Ludvig <michal@logix.cz> |
| 2 | 9 |
|
| 3 | 10 |
* Merged CloudFront support from branches/s3cmd-airlock |
| ... | ... |
@@ -1,3 +1,12 @@ |
| 1 |
+s3cmd 0.9.9-rc1 - 2009-01-27 |
|
| 2 |
+=============== |
|
| 3 |
+* CloudFront support through cfcreate, cfdelete, |
|
| 4 |
+ cfmodify and cfinfo commands. |
|
| 5 |
+* Added --include / --rinclude / --(r)include-from |
|
| 6 |
+ options to override --exclude exclusions. |
|
| 7 |
+* Enabled --dry-run for [put] and [get]. |
|
| 8 |
+* Fixed GPG (--encrypt) compatibility with Python 2.6. |
|
| 9 |
+ |
|
| 1 | 10 |
s3cmd 0.9.9-pre5 - 2009-01-22 |
| 2 | 11 |
================ |
| 3 | 12 |
* New command 'setacl' for setting ACL on existing objects. |
| ... | ... |
@@ -1,5 +1,5 @@ |
| 1 | 1 |
package = "s3cmd" |
| 2 |
-version = "0.9.9-pre5" |
|
| 2 |
+version = "0.9.9-rc1" |
|
| 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." |
| ... | ... |
@@ -7,6 +7,7 @@ long_description = """ |
| 7 | 7 |
S3cmd lets you copy files from/to Amazon S3 |
| 8 | 8 |
(Simple Storage Service) using a simple to use |
| 9 | 9 |
command line client. Supports rsync-like backup, |
| 10 |
-encryption, etc. |
|
| 10 |
+GPG encryption, and more. Also supports management |
|
| 11 |
+of Amazon's CloudFront content delivery network. |
|
| 11 | 12 |
""" |
| 12 | 13 |
|
| ... | ... |
@@ -2,21 +2,18 @@ TODO list for s3cmd project |
| 2 | 2 |
=========================== |
| 3 | 3 |
|
| 4 | 4 |
- For 0.9.9 |
| 5 |
- - Enable --exclude for [put], [get] and [del] |
|
| 6 |
- - Enable --dry-run for [put], [get] and [del], reject |
|
| 7 |
- for all others. |
|
| 5 |
+ - Enable --exclude for [del] |
|
| 6 |
+ - Enable --dry-run for [del], reject for all others. |
|
| 8 | 7 |
- Sync should work for one file, for example |
| 9 | 8 |
s3cmd sync /etc/passwd s3://bucket/passwd |
| 10 | 9 |
- 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". |
|
| 13 |
- - Document --recursive and --force for buckets |
|
| 10 |
+ - Recursive cp/mv on remote "folders". |
|
| 11 |
+ - Document --recursive and --force for buckets, CloudFront, |
|
| 12 |
+ new options --dry-run, --include, etc. |
|
| 14 | 13 |
- Allow change /tmp to somewhere else |
| 15 | 14 |
- With --guess-mime use 'magic' module if available. |
| 16 | 15 |
|
| 17 | 16 |
- For 1.0.0 |
| 18 |
- - Add --include/--include-from/--rinclude* for sync |
|
| 19 |
- - Add commands for CloudFront. |
|
| 20 | 17 |
- Add 'geturl' command, both Unicode and urlencoded output. |
| 21 | 18 |
|
| 22 | 19 |
- After 1.0.0 |