diff --git a/Cargo.toml b/Cargo.toml index 22299daa..f5bd1ae2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mongodb" -version = "0.2.1" +version = "0.2.2" authors = ["Kevin Yeh ", "Saghm Rossi ", "Valeri Karpov "] diff --git a/README.md b/README.md index 17a7832f..a66475b9 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,8 @@ The driver is available on crates.io. To use the MongoDB driver in your code, ad ``` [dependencies] -bson = "0.3.2" -mongodb = "0.2.0" +bson = "0.4.1" +mongodb = "0.2.2" ``` Alternately, you can use the MongoDB driver with SSL support. To do this, you must have OpenSSL installed on your system. Then, enable the `ssl` feature for MongoDB in your Cargo.toml: @@ -31,7 +31,7 @@ Alternately, you can use the MongoDB driver with SSL support. To do this, you mu ``` [dependencies] ... -mongodb = { version = "0.2.0", features = ["ssl"] } +mongodb = { version = "0.2.2", features = ["ssl"] } ``` Then, import the bson and driver libraries within your code.