Skip to content

Commit

Permalink
update github urls to the new url (redis-rs#618)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Dyas authored May 25, 2022
1 parent c1e3c97 commit 80f1268
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .clog.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[clog]
repository = "https://github.com/mitsuhiko/redis-rs"
repository = "https://github.com/redis-rs/redis-rs"

changelog = "CHANGELOG.md"

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.21.5"
authors = ["Armin Ronacher <armin.ronacher@active-4.com>", "Jan-Erik Rediger <janerik@fnordig.de>"]
keywords = ["redis", "database"]
description = "Redis driver for Rust."
homepage = "https://github.com/mitsuhiko/redis-rs"
repository = "https://github.com/mitsuhiko/redis-rs"
homepage = "https://github.com/redis-rs/redis-rs"
repository = "https://github.com/redis-rs/redis-rs"
documentation = "https://docs.rs/redis"
license = "BSD-3-Clause"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion src/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ impl ConnectionLike for Connection {
// When processing a transaction, some responses may be errors.
// We need to keep processing the rest of the responses in that case,
// so bailing early with `?` would not be correct.
// See: https://github.com/mitsuhiko/redis-rs/issues/436
// See: https://github.com/redis-rs/redis-rs/issues/436
let response = self.read_response();
match response {
Ok(item) => {
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//!
//! ```ini
//! [dependencies.redis]
//! git = "https://github.com/mitsuhiko/redis-rs.git"
//! git = "https://github.com/redis-rs/redis-rs.git"
//! ```
//!
//! # Basic Operation
Expand Down

0 comments on commit 80f1268

Please sign in to comment.