summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitch Garnaat <mitch@cloudright.com>2010-07-22 08:07:17 -0400
committerMitch Garnaat <mitch@cloudright.com>2010-07-22 08:07:17 -0400
commit2b8779970f203acfbd41bfe1eac021f86fab0bce (patch)
tree9de4611447176356010fd73dcf173b3bdb8aaa47
parent32c013f28a35edae56a3b44211a6651178271f4d (diff)
downloadboto-2b8779970f203acfbd41bfe1eac021f86fab0bce.tar.gz
Updating README info and bumping version number.2.0b1
-rw-r--r--README20
-rw-r--r--boto/__init__.py3
2 files changed, 11 insertions, 12 deletions
diff --git a/README b/README
index 14bb7537..38942806 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-boto 2.0a2
-05-Jul-2010
+boto 2.0b1
+22-Jul-2010
Copyright (c) 2006-2010 Mitch Garnaat <mitch@garnaat.org>
Copyright (c) 2010, Eucalyptus Systems, Inc.
@@ -40,20 +40,20 @@ libraries or packages other than those that are distributed with Python 2.6.5.
Efforts are made to keep boto compatible with Python 2.4.x but no
guarantees are made.
-There is some documentation for boto, mainly in the form of tutorials.
-Check in the doc directory of the distribution. You can also check out
-the unit tests in the tests directory of the distribution for examples of use.
+Documentation for boto can be found at:
-You AWS credentials can be passed into the methods that create S3 and SQS
+http://boto.cloudhackers.com/
+
+Your credentials can be passed into the methods that create
connections. Alternatively, boto will check for the existance of the
following environment variables to ascertain your credentials:
AWS_ACCESS_KEY_ID - Your AWS Access Key ID
AWS_SECRET_ACCESS_KEY - Your AWS Secret Access Key
-Changes
+Credentials and other boto-related settings can also be stored in a boto config
+file. See:
-Rather than list changes in the README file, I have decided to refer people to the
-excellent subversion browsing available on googlecode.
+http://code.google.com/p/boto/wiki/BotoConfig
-http://code.google.com/p/boto/source/browse
+for details. \ No newline at end of file
diff --git a/boto/__init__.py b/boto/__init__.py
index 7a8b4158..fbc9ef6a 100644
--- a/boto/__init__.py
+++ b/boto/__init__.py
@@ -28,9 +28,8 @@ import logging
import logging.config
from boto.exception import InvalidUriError
-__version__ = '2.0a2'
+__version__ = '2.0b1'
Version = __version__ # for backware compatibility
-__svn_version__ = '$Rev$'
UserAgent = 'Boto/%s (%s)' % (__version__, sys.platform)
config = Config()