couchdb v0.1.0 Release Notes

Release Date: 2015-09-21 // over 8 years ago
  • ๐Ÿ’ฅ Breaking changes

    • The Revision type now implements the AsRef<str> trait instead of implementing the as_str method.
    • Client commands that have a revision parameter now borrow the Revision argument instead of taking ownership. This resolves issue #1.
    • Disallow construction of a Revision from an arbitrary string.
    • The ServerErrorResponse type has been renamed to ErrorResponse, which is now used consistently for reporting CouchDB server errors.
    • The DesignDocument type has been renamed to Design.
    • There's a new IntoUrl trait that aliases hyper::IntoUrl.

    ๐Ÿ›  Fixes

    • The views field of the Design struct is now public.

    ๐Ÿ†• New

    • There's a new ViewFunctionMap collection type.