Skip to content

Commit 2e6bb8f

Browse files
committed
release v2.0.0-beta.1
1 parent 5ce15c5 commit 2e6bb8f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bson"
3-
version = "2.0.0-beta"
3+
version = "2.0.0-beta.1"
44
authors = [
55
"Y. T. Chung <[email protected]>",
66
"Kevin Yeh <[email protected]>",
@@ -47,7 +47,7 @@ name = "bson"
4747

4848
[dependencies]
4949
ahash = "0.7.2"
50-
chrono = "0.4"
50+
chrono = "0.4.15"
5151
rand = "0.7"
5252
serde = { version = "1.0", features = ["derive"] }
5353
serde_json = { version = "1.0", features = ["preserve_order"] }

README.md

Lines changed: 1 addition & 1 deletion
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 = "2.0.0-beta"
28+
bson = "2.0.0-beta.1"
2929
```
3030

3131
## Overview of BSON Format

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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/2.0.0-beta")]
186+
#![doc(html_root_url = "https://docs.rs/bson/2.0.0-beta.1")]
187187

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

0 commit comments

Comments
 (0)