Skip to content

Commit

Permalink
release v2.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickfreed committed Jun 1, 2021
1 parent 5ce15c5 commit 2e6bb8f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bson"
version = "2.0.0-beta"
version = "2.0.0-beta.1"
authors = [
"Y. T. Chung <[email protected]>",
"Kevin Yeh <[email protected]>",
Expand Down Expand Up @@ -47,7 +47,7 @@ name = "bson"

[dependencies]
ahash = "0.7.2"
chrono = "0.4"
chrono = "0.4.15"
rand = "0.7"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
Expand Down
2 changes: 1 addition & 1 deletion 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 = "2.0.0-beta"
bson = "2.0.0-beta.1"
```

## Overview of BSON Format
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
//! that is also less error prone.

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

pub use self::{
bson::{Array, Binary, Bson, DbPointer, Document, JavaScriptCodeWithScope, Regex, Timestamp},
Expand Down

0 comments on commit 2e6bb8f

Please sign in to comment.