Skip to content

Commit

Permalink
release v2.0.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickfreed committed May 14, 2021
1 parent 097fbe5 commit 0af081b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This crate works with Cargo and can be found on

```toml
[dependencies]
bson = "1.2.0"
bson = "2.0.0-beta"
```

## Overview of BSON Format
Expand All @@ -48,7 +48,7 @@ hello\x00 // field name
```

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

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

Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
//! ```
//!
//! BSON is the primary data representation for [MongoDB](https://www.mongodb.com/), and this crate is used in the
//! [`mongodb`](https://docs.rs/mongodb/0.10.0/mongodb/) driver crate in its API and implementation.
//! [`mongodb`](https://docs.rs/mongodb/latest/mongodb/) driver crate in its API and implementation.
//!
//! For more information about BSON itself, see [bsonspec.org](http://bsonspec.org).
//!
Expand Down Expand Up @@ -183,7 +183,7 @@
//! that is also less error prone.

#![allow(clippy::cognitive_complexity)]
#![doc(html_root_url = "https://docs.rs/bson/1.2.2")]
#![doc(html_root_url = "https://docs.rs/bson/2.0.0-beta")]

pub use self::{
bson::{
Expand Down

0 comments on commit 0af081b

Please sign in to comment.