Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jace-ys committed Mar 1, 2021
1 parent 36d5846 commit e4ac0ff
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "redsync"
version = "0.1.2"
version = "1.0.0"
authors = ["jace-ys <[email protected]>"]
edition = "2018"
description = "A Rust implementation of Redlock for distributed locks with Redis"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Add the following line to your Cargo.toml file:

```toml
[dependencies]
redsync = "0.1.2"
redsync = "1.0.0"
```

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pub enum RedsyncError {
UnlockFailed(MultiError),
}

/// `MultiError` wraps Vec<RedsyncError>, typically aggregated over instances in a Redsync cluster.
/// `MultiError` wraps `Vec<RedsyncError>`, typically aggregated over instances in a Redsync cluster.
#[derive(Debug, Default, PartialEq)]
pub struct MultiError(Vec<RedsyncError>);

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//!
//! ```toml
//! [dependencies]
//! redsync = "0.1.2"
//! redsync = "1.0.0"
//! ```
//!
//! # Quick Start
Expand Down

0 comments on commit e4ac0ff

Please sign in to comment.