Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
Update changelog and setup.py for 3.0.0b1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Wayne Parrott committed Sep 13, 2016
1 parent 381297f commit 84eae7b
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
Version 3.0.0b1
---------------

This is the first release of this project under the new maintainers.

Breaking changes:
- Removed all deprecrated items.
- `webapp2_extras.config`, replaced by `WSGIApplication.config`.
- `webapp2_extras.local_app`, replaced by automatic behavior provided by `webapp2_extras.local`.
- `webapp2_extras.sessions_memcache`, moved to webapp2_extras.appengine.sessions_memcache`.
- `webapp2_extras.sessions_ndb`, moved to `webapp2_extras.appengine.sessions_ndb`.
- `webapp2_extras.users`, moved to `webapp2_extras.appengine.users`.
- `return_multiple` argument to `Request.get`, replaced by `Request.get_all`.
- Updated most dependencies while attempting to maintain backwards compatibility.
- Added dependency on `six`.

Other changes:
- Provisional support for Python 3 (#117)
- Made codebase compliant with pep8.
- Various documentation link fixes.
- Send request headers (cookies) with abort=True requests too. (#112)
- `webapp2_extras.appengine.auth.models.User.validate_token` now returns `UserToken` or `None` instead of `True/False`. (#109)
- Fixed various issues that prevented the package from being built.
- Removed the `experimental` directory.
- Switched test runner to py.test and added coverage reporting.
- Removed vendored-in third-party libraries used for testing.


Version 2.5.1 - February 07, 2012
---------------------------------
- Bug fix release related to request charset in old versions of
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

setup(
name='webapp2',
version='3.0.0',
version='3.0.0b1',
license='Apache Software License',
url='http://webapp2.readthedocs.org',
description="Taking Google App Engine's webapp to the next level!",
Expand Down

0 comments on commit 84eae7b

Please sign in to comment.