Skip to content

Commit 0fd37c2

Browse files
committed
Merge changes from default in preparation for 0.7 release.
--HG-- branch : stable
2 parents 1741559 + 6fc4edc commit 0fd37c2

File tree

16 files changed

+1301
-466
lines changed

16 files changed

+1301
-466
lines changed

ChangeLog.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
Version 0.7.0
2+
http://couchdb-python.googlecode.com/hg/?r=default
3+
(???, from branches/0.7.x)
4+
5+
* Breaking change: the dependency on `httplib2` has been replaced by
6+
an internal `couchdb.http` library. This changes the API in several places.
7+
Most importantly, `resource.request()` now returns a 3-member tuple.
8+
* Breaking change: `couchdb.schema` has been renamed to `couchdb.mapping`.
9+
This better reflects what is actually provided. Classes inside
10+
`couchdb.mapping` have been similarly renamed (e.g. `Schema` -> `Mapping`).
11+
* Breaking change: `couchdb.schema.View` has been renamed to
12+
`couchdb.mapping.ViewField`, in order to help distinguish it from
13+
`couchdb.client.View`.
14+
* Breaking change: the `client.Server` properties `version` and `config`
15+
have become methods in order to improve API consistency.
16+
* Prevent `schema.ListField` objects from sharing the same default (issue 107).
17+
* Added a `changes()` method to the `client.Database` class (issue 103).
18+
* Added an optional argument to the 'Database.compact` method to enable
19+
view compaction (the rest of issue 37).
20+
121
Version 0.6.1
222
http://couchdb-python.googlecode.com/hg/?r=0.6.1
323
(Dec 14, 2009, from branches/0.6.x)

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ include COPYING
22
include ChangeLog.txt
33
include doc/api/*.*
44
include doc/*.html
5+
include doc/conf/*.ini

0 commit comments

Comments
 (0)