Browse code

* Released version 0.9.9

* S3/PkgInfo.py: Updated to 0.9.9
* NEWS: Compile a big news list for 0.9.9



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

Michal Ludvig authored on 2009/02/16 22:15:09
Showing 3 changed files
... ...
@@ -1,5 +1,13 @@
1 1
 2009-02-17  Michal Ludvig  <michal@logix.cz>
2 2
 
3
+	* Released version 0.9.9
4
+	  ----------------------
5
+
6
+	* S3/PkgInfo.py: Updated to 0.9.9
7
+	* NEWS: Compile a big news list for 0.9.9
8
+
9
+2009-02-17  Michal Ludvig  <michal@logix.cz>
10
+
3 11
 	* s3cmd.1: Document all the new options and commands.
4 12
 	* s3cmd, S3/Config.py: Updated some help texts. Removed
5 13
 	  option --debug-syncmatch along the way (because --dry-run
... ...
@@ -1,65 +1,37 @@
1
-s3cmd 0.9.9
1
+s3cmd 0.9.9   -   2009-02-17
2 2
 ===========
3
-* Added --add-header option for [put], [sync], [cp] and [mv].
4
-* Added --list-md5 option for [ls].
5
-* Always send Content-Length header to satisfy some http proxies.
6
-
7
-s3cmd 0.9.9-rc3  - 2009-02-02
8
-===============
9
-* Fixed crash: AttributeError: 'S3Error' object has no attribute '_message'
10
-  (bug  #2547322)
11
-
12
-s3cmd 0.9.9-rc2  - 2009-01-30
13
-===============
14
-* Fixed s3cmd crash when put / get / sync found
15
-  zero files to transfer.
16
-* In --dry-run output files to be deleted only
17
-  with --delete-removed, otherwise users get scared.
18
-
19
-s3cmd 0.9.9-rc1  - 2009-01-27
20
-===============
21
-* CloudFront support through cfcreate, cfdelete, 
22
-  cfmodify and cfinfo commands.
3
+New commands:
4
+* Commands for copying and moving objects, within or 
5
+  between buckets: [cp] and [mv] (Andrew Ryan)
6
+* CloudFront support through [cfcreate], [cfdelete], 
7
+  [cfmodify] and [cfinfo] commands. (sponsored by Joseph Denne)
8
+* New command [setacl] for setting ACL on existing objects, 
9
+  use together with --acl-public/--acl-private (sponsored by
10
+  Joseph Denne)
11
+
12
+Other major features:
13
+* Improved source dirname handling for [put], [get] and [sync].
14
+* Recursive and wildcard support for [put], [get] and [del].
15
+* Support for non-recursive [ls].
16
+* Enabled --dry-run for [put], [get] and [sync].
17
+* Allowed removal of non-empty buckets with [rb --force].
18
+* Implemented progress meter (--progress / --no-progress)
23 19
 * Added --include / --rinclude / --(r)include-from 
24 20
   options to override --exclude exclusions.
25
-* Enabled --dry-run for [put] and [get].
26
-* Fixed GPG (--encrypt) compatibility with Python 2.6.
27
-
28
-s3cmd 0.9.9-pre5 - 2009-01-22
29
-================
30
-* New command 'setacl' for setting ACL on existing objects.
31
-* Recursive [put] with a slightly different semantic.
32
-* Multiple sources for [sync] and slightly different semantics.
33
-* Support for --dry-run with [sync]
34
-
35
-s3cmd 0.9.9-pre4 - 2008-12-30
36
-================
37
-* Support for non-recursive [ls]
38
-* Support for multiple sources and recursive [get].
39
-* Improved wildcard [get].
21
+* Added --add-header option for [put], [sync], [cp] and [mv]. 
22
+  Good for setting e.g. Expires or Cache-control headers.
23
+* Added --list-md5 option for [ls].
24
+* Continue [get] partially downloaded files with --continue
40 25
 * New option --skip-existing for [get] and [sync].
41
-* Improved Progress class (fixes Mac OS X)
26
+
27
+Minor features and bugfixes:
28
+* Fixed GPG (--encrypt) compatibility with Python 2.6.
29
+* Always send Content-Length header to satisfy some http proxies.
42 30
 * Fixed installation on Windows and Mac OS X.
43 31
 * Don't print nasty backtrace on KeyboardInterrupt.
44 32
 * Should work fine on non-UTF8 systems, provided all
45
-  the files are in current system encoding. 
33
+  the files are in current system encoding.
46 34
 * System encoding can be overriden using --encoding.
47
-
48
-s3cmd 0.9.9-pre3 - 2008-12-01
49
-================
50
-* Bugfixes only
51
-  - Fixed sync from S3 to local
52
-  - Fixed progress meter with Unicode chars
53
-
54
-s3cmd 0.9.9-pre2 - 2008-11-24
55
-================
56
-* Implemented progress meter (--progress / --no-progress)
57
-* Removing of non-empty buckets with --force
58
-* Recursively remove objects from buckets with a given
59
-  prefix with --recursive (-r)
60
-* Copying and moving objects, within or between buckets.
61
-  (Andrew Ryan)
62
-* Continue getting partially downloaded files with --continue
63 35
 * Improved resistance to communication errors (Connection 
64 36
   reset by peer, etc.)
65 37
 
... ...
@@ -1,5 +1,5 @@
1 1
 package = "s3cmd"
2
-version = "0.9.9-rc3"
2
+version = "0.9.9"
3 3
 url = "http://s3tools.org"
4 4
 license = "GPL version 2"
5 5
 short_description = "Command line tool for managing Amazon S3 and CloudFront services"