Bump crate to 0.9.0

pull/33/head
Thijs Cadier 7 years ago
parent 11d927bb7d
commit ac0020c0be

@ -1,3 +1,9 @@
# 0.9.0
* Add WriteConcernError and DuplicateKey to error
* Add error code for unknown error
* Bulk operation result which includes reply
* Don't use natural option in tail anymore
# 0.8.0 # 0.8.0
* Upgrade bson dependency to 0.9 * Upgrade bson dependency to 0.9

@ -1,6 +1,6 @@
[package] [package]
name = "mongo_driver" name = "mongo_driver"
version = "0.8.0" version = "0.9.0"
authors = ["Thijs Cadier <thijs@appsignal.com>"] authors = ["Thijs Cadier <thijs@appsignal.com>"]
description = "Mongo Rust driver built on top of the Mongo C driver" description = "Mongo Rust driver built on top of the Mongo C driver"
readme = "README.md" readme = "README.md"
@ -25,7 +25,7 @@ bson = "^0.9"
[dependencies.mongoc-sys] [dependencies.mongoc-sys]
path = "mongoc-sys" path = "mongoc-sys"
version = "1.6.3-1" version = "1.6.4"
[dev-dependencies] [dev-dependencies]
chrono = "^0.4" chrono = "^0.4"

@ -1,6 +1,6 @@
[package] [package]
name = "mongoc-sys" name = "mongoc-sys"
version = "1.6.3-1" version = "1.6.4"
description = "Sys package with installer and bindings for mongoc" description = "Sys package with installer and bindings for mongoc"
authors = ["Thijs Cadier <thijs@appsignal.com>"] authors = ["Thijs Cadier <thijs@appsignal.com>"]
build = "build.rs" build = "build.rs"

Loading…
Cancel
Save