Skip to content

Commit

Permalink
Merging from release-2.3.0 branch to master.
Browse files Browse the repository at this point in the history
  • Loading branch information
garnaat committed Mar 20, 2012
2 parents 94c7391 + c4f3744 commit 2d88202
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.markdown
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# boto
boto 2.2.2
14-Feb-2012
boto 2.3.0
18-Mar-2012

## Introduction

Expand All @@ -27,6 +27,7 @@ At the moment, boto supports:
* Flexible Payment Service (FPS)
* CloudFormation
* Amazon DynamoDB
* Amazon SimpleWorkflow

The goal of boto is to support the full breadth and depth of Amazon
Web Services. In addition, boto provides support for other public
Expand All @@ -44,13 +45,11 @@ to keep boto compatible with Python 2.5.x but no guarantees are made.
The main source code repository for boto can be found on
[github.com](http://github.com/boto/boto)

[Online documentation](http://readthedocs.org/docs/boto/) is also
[Online documentation](http://docs.pythonboto.org/) is also
available. The online documentation includes full API documentation
as well as Getting Started Guides for many of the boto modules.

Boto releases can be found on the [Google Project
page](http://code.google.com/p/boto/downloads/list) or on the [Python
Cheese Shop](http://pypi.python.org/).
Boto releases can be found on the [Python Cheese Shop](http://pypi.python.org/).

Join our `IRC channel`_ (#boto on FreeNode).
IRC channel: http://webchat.freenode.net/?channels=boto
Expand All @@ -68,6 +67,7 @@ Credentials and other boto-related settings can also be stored in a
boto config file. See
[this](http://code.google.com/p/boto/wiki/BotoConfig) for details.

Copyright (c) 2006-2011 Mitch Garnaat <[email protected]>
Copyright (c) 2006-2012 Mitch Garnaat <[email protected]>
Copyright (c) 2010-2011, Eucalyptus Systems, Inc.
Copyright (c) 2012 Amazon.com, Inc. or its affiliates.
All rights reserved.
5 changes: 3 additions & 2 deletions boto/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Copyright (c) 2006-2011 Mitch Garnaat http://garnaat.org/
# Copyright (c) 2006-2012 Mitch Garnaat http://garnaat.org/
# Copyright (c) 2010-2011, Eucalyptus Systems, Inc.
# Copyright (c) 2011, Nexenta Systems Inc.
# Copyright (c) 2012 Amazon.com, Inc. or its affiliates.
# All rights reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a
Expand Down Expand Up @@ -31,7 +32,7 @@
import urlparse
from boto.exception import InvalidUriError

__version__ = '2.3.0-dev'
__version__ = '2.3.0'
Version = __version__ # for backware compatibility

UserAgent = 'Boto/%s (%s)' % (__version__, sys.platform)
Expand Down

0 comments on commit 2d88202

Please sign in to comment.