Skip to content

Commit 0af081b

Browse files
committed
release v2.0.0-beta
1 parent 097fbe5 commit 0af081b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This crate works with Cargo and can be found on
2525

2626
```toml
2727
[dependencies]
28-
bson = "1.2.0"
28+
bson = "2.0.0-beta"
2929
```
3030

3131
## Overview of BSON Format
@@ -48,7 +48,7 @@ hello\x00 // field name
4848
```
4949

5050
BSON is the primary data representation for [MongoDB](https://www.mongodb.com/), and this crate is used in the
51-
[`mongodb`](https://docs.rs/mongodb/0.10.0/mongodb/) driver crate in its API and implementation.
51+
[`mongodb`](https://docs.rs/mongodb/latest/mongodb/) driver crate in its API and implementation.
5252

5353
For more information about BSON itself, see [bsonspec.org](http://bsonspec.org).
5454

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
//! ```
3838
//!
3939
//! BSON is the primary data representation for [MongoDB](https://www.mongodb.com/), and this crate is used in the
40-
//! [`mongodb`](https://docs.rs/mongodb/0.10.0/mongodb/) driver crate in its API and implementation.
40+
//! [`mongodb`](https://docs.rs/mongodb/latest/mongodb/) driver crate in its API and implementation.
4141
//!
4242
//! For more information about BSON itself, see [bsonspec.org](http://bsonspec.org).
4343
//!
@@ -183,7 +183,7 @@
183183
//! that is also less error prone.
184184
185185
#![allow(clippy::cognitive_complexity)]
186-
#![doc(html_root_url = "https://docs.rs/bson/1.2.2")]
186+
#![doc(html_root_url = "https://docs.rs/bson/2.0.0-beta")]
187187

188188
pub use self::{
189189
bson::{

0 commit comments

Comments
 (0)