Skip to content
This repository was archived by the owner on Aug 16, 2021. It is now read-only.

Commit 7feb96d

Browse files
budziqYamakaky
authored andcommitted
Fix broken links after move to rust-lang-nursery (#205)
Fixes #204
1 parent 55ba205 commit 7feb96d

File tree

4 files changed

+32
-32
lines changed

4 files changed

+32
-32
lines changed

CHANGELOG.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
# 0.11.0-rc.2
22

3-
- [Make `ErrorChainIter`'s field private](https://github.com/brson/error-chain/issues/178)
4-
- [Rename `ErrorChainIter` to `Iter`](https://github.com/brson/error-chain/issues/168)
5-
- [Implement `Debug` for `ErrorChainIter`](https://github.com/brson/error-chain/issues/169)
6-
- [Rename `ChainedError::display` to `display_chain`](https://github.com/brson/error-chain/issues/180)
7-
- [Add a new method for `Error`: `chain_err`.](https://github.com/brson/error-chain/pull/141)
8-
- [Allow `chain_err` to be used on `Option<T>`](https://github.com/brson/error-chain/pull/156)
9-
- [Add support for creating an error chain on boxed trait errors (`Box<Error>`)](https://github.com/brson/error-chain/pull/156)
10-
- [Remove lint for unused doc comment.](https://github.com/brson/error-chain/pull/199)
3+
- [Make `ErrorChainIter`'s field private](https://github.com/rust-lang-nursery/error-chain/issues/178)
4+
- [Rename `ErrorChainIter` to `Iter`](https://github.com/rust-lang-nursery/error-chain/issues/168)
5+
- [Implement `Debug` for `ErrorChainIter`](https://github.com/rust-lang-nursery/error-chain/issues/169)
6+
- [Rename `ChainedError::display` to `display_chain`](https://github.com/rust-lang-nursery/error-chain/issues/180)
7+
- [Add a new method for `Error`: `chain_err`.](https://github.com/rust-lang-nursery/error-chain/pull/141)
8+
- [Allow `chain_err` to be used on `Option<T>`](https://github.com/rust-lang-nursery/error-chain/pull/156)
9+
- [Add support for creating an error chain on boxed trait errors (`Box<Error>`)](https://github.com/rust-lang-nursery/error-chain/pull/156)
10+
- [Remove lint for unused doc comment.](https://github.com/rust-lang-nursery/error-chain/pull/199)
1111

1212
# 0.10.0
1313

14-
- [Add a new constructor for `Error`: `with_chain`.](https://github.com/brson/error-chain/pull/126)
15-
- [Add the `ensure!` macro.](https://github.com/brson/error-chain/pull/135)
14+
- [Add a new constructor for `Error`: `with_chain`.](https://github.com/rust-lang-nursery/error-chain/pull/126)
15+
- [Add the `ensure!` macro.](https://github.com/rust-lang-nursery/error-chain/pull/135)
1616

1717
# 0.9.0
1818

19-
- Revert [Add a `Sync` bound to errors](https://github.com/brson/error-chain/pull/110)
19+
- Revert [Add a `Sync` bound to errors](https://github.com/rust-lang-nursery/error-chain/pull/110)
2020

2121
# 0.8.1
2222

2323
- Add crates.io categorie.
2424

2525
# 0.8.0
2626

27-
- [Add a `Sync` bound to errors](https://github.com/brson/error-chain/pull/110)
28-
- [Add `ChainedError::display` to format error chains](https://github.com/brson/error-chain/pull/113)
27+
- [Add a `Sync` bound to errors](https://github.com/rust-lang-nursery/error-chain/pull/110)
28+
- [Add `ChainedError::display` to format error chains](https://github.com/rust-lang-nursery/error-chain/pull/113)
2929

3030
# 0.7.2
3131

@@ -35,11 +35,11 @@
3535

3636
# 0.7.1
3737

38-
- [Add the `bail!` macro](https://github.com/brson/error-chain/pull/76)
38+
- [Add the `bail!` macro](https://github.com/rust-lang-nursery/error-chain/pull/76)
3939

4040
# 0.7.0
4141

42-
- [Rollback several design changes to fix regressions](https://github.com/brson/error-chain/pull/75)
42+
- [Rollback several design changes to fix regressions](https://github.com/rust-lang-nursery/error-chain/pull/75)
4343
- New `Variant(Error) #[attrs]` for `links` and `foreign_links`.
4444
- Hide implementation details from the doc.
4545
- Always generate `Error::backtrace`.
@@ -69,41 +69,41 @@
6969

7070
# 0.5.0
7171

72-
- [Only generate backtraces with RUST_BACKTRACE set](https://github.com/brson/error-chain/pull/27)
73-
- [Fixup matching, disallow repeating "types" section](https://github.com/brson/error-chain/pull/26)
74-
- [Fix tests on stable/beta](https://github.com/brson/error-chain/pull/28)
75-
- [Only deploy docs when tagged](https://github.com/brson/error-chain/pull/30)
72+
- [Only generate backtraces with RUST_BACKTRACE set](https://github.com/rust-lang-nursery/error-chain/pull/27)
73+
- [Fixup matching, disallow repeating "types" section](https://github.com/rust-lang-nursery/error-chain/pull/26)
74+
- [Fix tests on stable/beta](https://github.com/rust-lang-nursery/error-chain/pull/28)
75+
- [Only deploy docs when tagged](https://github.com/rust-lang-nursery/error-chain/pull/30)
7676

7777
Contributors: benaryorg, Brian Anderson, Georg Brandl
7878

7979
# 0.4.2
8080

81-
- [Fix the resolution of the ErrorKind description method](https://github.com/brson/error-chain/pull/24)
81+
- [Fix the resolution of the ErrorKind description method](https://github.com/rust-lang-nursery/error-chain/pull/24)
8282

8383
Contributors: Brian Anderson
8484

8585
# 0.4.1 (yanked)
8686

87-
- [Fix a problem with resolving methods of the standard Error type](https://github.com/brson/error-chain/pull/22)
87+
- [Fix a problem with resolving methods of the standard Error type](https://github.com/rust-lang-nursery/error-chain/pull/22)
8888

8989
Contributors: Brian Anderson
9090

9191
# 0.4.0 (yanked)
9292

93-
- [Remove the foreign link description and forward to the foreign error](https://github.com/brson/error-chain/pull/19)
94-
- [Allow missing sections](https://github.com/brson/error-chain/pull/17)
93+
- [Remove the foreign link description and forward to the foreign error](https://github.com/rust-lang-nursery/error-chain/pull/19)
94+
- [Allow missing sections](https://github.com/rust-lang-nursery/error-chain/pull/17)
9595

9696
Contributors: Brian Anderson, Taylor Cramer
9797

9898
# 0.3.0
9999

100-
- [Forward Display implementation for foreign errors](https://github.com/brson/error-chain/pull/13)
100+
- [Forward Display implementation for foreign errors](https://github.com/rust-lang-nursery/error-chain/pull/13)
101101

102102
Contributors: Brian Anderson, Taylor Cramer
103103

104104
# 0.2.2
105105

106-
- [Don't require `types` section in macro invocation](https://github.com/brson/error-chain/pull/8)
107-
- [Add "quick start" to README](https://github.com/brson/error-chain/pull/9)
106+
- [Don't require `types` section in macro invocation](https://github.com/rust-lang-nursery/error-chain/pull/8)
107+
- [Add "quick start" to README](https://github.com/rust-lang-nursery/error-chain/pull/9)
108108

109109
Contributors: Brian Anderson, Jake Shadle, Nate Mara

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ keywords = ["error"]
1010
categories = ["rust-patterns"]
1111

1212
documentation = "https://docs.rs/error-chain"
13-
repository = "https://github.com/brson/error-chain"
13+
repository = "https://github.com/rust-lang-nursery/error-chain"
1414
readme = "README.md"
1515

1616
license = "MIT/Apache-2.0"
1717

1818
[badges]
19-
travis-ci = { repository = "brson/error-chain" }
19+
travis-ci = { repository = "rust-lang-nursery/error-chain" }
2020

2121
[features]
2222
default = ["backtrace", "example_generated"]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# error-chain - Consistent error handling for Rust
22

3-
[![Build Status](https://api.travis-ci.org/brson/error-chain.svg?branch=master)](https://travis-ci.org/brson/error-chain)
3+
[![Build Status](https://api.travis-ci.org/rust-lang-nursery/error-chain.svg?branch=master)](https://travis-ci.org/rust-lang-nursery/error-chain)
44
[![Latest Version](https://img.shields.io/crates/v/error-chain.svg)](https://crates.io/crates/error-chain)
5-
[![License](https://img.shields.io/github/license/brson/error-chain.svg)](https://github.com/brson/error-chain)
5+
[![License](https://img.shields.io/github/license/rust-lang-nursery/error-chain.svg)](https://github.com/rust-lang-nursery/error-chain)
66

77
`error-chain` makes it easy to take full advantage of Rust's error
88
handling features without the overhead of maintaining boilerplate
@@ -20,7 +20,7 @@ If you just want to set up your new project with error-chain,
2020
follow the [quickstart.rs] template, and read this [intro]
2121
to error-chain.
2222

23-
[quickstart.rs]: https://github.com/brson/error-chain/blob/master/examples/quickstart.rs
23+
[quickstart.rs]: https://github.com/rust-lang-nursery/error-chain/blob/master/examples/quickstart.rs
2424
[intro]: http://brson.github.io/2016/11/30/starting-with-error-chain
2525

2626
## Supported Rust version

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
//! follow the [quickstart.rs] template, and read this [intro]
1717
//! to error-chain.
1818
//!
19-
//! [quickstart.rs]: https://github.com/brson/error-chain/blob/master/examples/quickstart.rs
19+
//! [quickstart.rs]: https://github.com/rust-lang-nursery/error-chain/blob/master/examples/quickstart.rs
2020
//! [intro]: http://brson.github.io/2016/11/30/starting-with-error-chain
2121
//!
2222
//! ## Why error chain?

0 commit comments

Comments
 (0)