Skip to content

Commit 02b1aa4

Browse files
committed
Update GitHub repo URL
1 parent 0ccf56b commit 02b1aa4

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@
4747
### [0.8.0] — 2021-01-18
4848
[0.8.0]: /../../tree/v0.8.0
4949

50-
- Fixed filtering of tests by tag ([#67](https://github.com/bbqsrc/cucumber-rust/issues/67))
51-
- Implemented failure reporting ([#91](https://github.com/bbqsrc/cucumber-rust/issues/91))
50+
- Fixed filtering of tests by tag ([#67](https://github.com/cucumber-rs/cucumber/issues/67))
51+
- Implemented failure reporting ([#91](https://github.com/cucumber-rs/cucumber/issues/91))
5252
- Removed unnecessary dependent traits from `World` trait
5353
- Added proc-macro variant (thanks Ilya Solovyiov and Kai Ren)
5454

5555
### [0.7.3] — 2020-09-20
5656
[0.7.3]: /../../tree/v0.7.3
5757

58-
- Fix missing mut in t! macro for regexes ([#68](https://github.com/bbqsrc/cucumber-rust/issues/68)) — thanks [@stefanpieck](https://github.com/stefanpieck)!
58+
- Fix missing mut in t! macro for regexes ([#68](https://github.com/cucumber-rs/cucumber/issues/68)) — thanks [@stefanpieck](https://github.com/stefanpieck)!
5959

6060
### [0.7.2] — 2020-09-14
6161
[0.7.2]: /../../tree/v0.7.2

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ authors = [
1414
"Kai Ren <tyranron@gmail.com>",
1515
]
1616
documentation = "https://docs.rs/cucumber_rust"
17-
homepage = "https://github.com/bbqsrc/cucumber-rust"
18-
repository = "https://github.com/bbqsrc/cucumber-rust"
17+
homepage = "https://github.com/cucumber-rs/cucumber"
18+
repository = "https://github.com/cucumber-rs/cucumber"
1919
readme = "README.md"
2020
categories = ["asynchronous", "development-tools::testing"]
2121
keywords = ["cucumber", "testing", "bdd", "atdd", "async"]

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# cucumber-rust
1+
# cucumber
22

33
[![Documentation](https://docs.rs/cucumber_rust/badge.svg)](https://docs.rs/cucumber_rust)
4-
[![Actions Status](https://github.com/bbqsrc/cucumber-rust/workflows/CI/badge.svg)](https://github.com/bbqsrc/cucumber-rust/actions)
4+
[![Actions Status](https://github.com/cucumber-rs/cucumber/workflows/CI/badge.svg)](https://github.com/cucumber-rs/cucumber/actions)
55
[![Unsafe Forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance/)
66

77
An implementation of the [Cucumber] testing framework for Rust. Fully native, no external test runners or dependencies.
88

99
- Book ([current][1] | [edge][2])
10-
- [Changelog](https://github.com/bbqsrc/cucumber-rust/blob/main/CHANGELOG.md)
10+
- [Changelog](https://github.com/cucumber-rs/cucumber/blob/main/CHANGELOG.md)
1111

1212

1313

@@ -105,8 +105,8 @@ The full gamut of Cucumber's [Gherkin] language is implemented by the [`gherkin-
105105

106106
This project is licensed under either of
107107

108-
* Apache License, Version 2.0 ([LICENSE-APACHE](https://github.com/bbqsrc/cucumber-rust/blob/main/LICENSE-APACHE) or <http://www.apache.org/licenses/LICENSE-2.0>)
109-
* MIT license ([LICENSE-MIT](https://github.com/bbqsrc/cucumber-rust/blob/main/LICENSE-MIT) or <http://opensource.org/licenses/MIT>)
108+
* Apache License, Version 2.0 ([LICENSE-APACHE](https://github.com/cucumber-rs/cucumber/blob/main/LICENSE-APACHE) or <http://www.apache.org/licenses/LICENSE-2.0>)
109+
* MIT license ([LICENSE-MIT](https://github.com/cucumber-rs/cucumber/blob/main/LICENSE-MIT) or <http://opensource.org/licenses/MIT>)
110110

111111
at your option.
112112

@@ -116,5 +116,5 @@ at your option.
116116
[Cucumber]: https://cucumber.io
117117
[Gherkin]: https://cucumber.io/docs/gherkin/reference
118118

119-
[1]: https://bbqsrc.github.io/cucumber-rust/current
120-
[2]: https://bbqsrc.github.io/cucumber-rust/main
119+
[1]: https://cucumber-rs.github.io/cucumber/current
120+
[2]: https://cucumber-rs.github.io/cucumber/main

book/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# cucumber-rust book
1+
# cucumber book
22

33
Book containing the [`cucumber_rust`](https://crates.io/crates/cucumber_rust) documentation.
44

book/book.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ build-dir = "_rendered"
1010
create-missing = false
1111

1212
[output.html]
13-
git_repository_url = "https://github.com/bbqsrc/cucumber-rust"
13+
git_repository_url = "https://github.com/cucumber-rs/cucumber"

codegen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ authors = [
99
"Ilya Solovyiov <ilya.solovyiov@gmail.com>",
1010
"Kai Ren <tyranron@gmail.com>",
1111
]
12-
repository = "https://github.com/bbqsrc/cucumber-rust"
12+
repository = "https://github.com/cucumber-rs/cucumber"
1313
documentation = "https://docs.rs/cucumber_rust_codegen"
14-
homepage = "https://github.com/bbqsrc/cucumber-rust"
14+
homepage = "https://github.com/cucumber-rs/cucumber"
1515
readme = "README.md"
1616
categories = ["asynchronous", "development-tools::testing"]
1717
keywords = ["cucumber", "codegen", "macros"]

codegen/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# cucumber-rust-codegen
22

33
[![Documentation](https://docs.rs/cucumber_rust_codegen/badge.svg)](https://docs.rs/cucumber_rust_codegen)
4-
[![Actions Status](https://github.com/bbqsrc/cucumber-rust/workflows/CI/badge.svg)](https://github.com/bbqsrc/cucumber-rust/actions)
4+
[![Actions Status](https://github.com/cucumber-rs/cucumber/workflows/CI/badge.svg)](https://github.com/cucumber-rs/cucumber/actions)
55
[![Unsafe Forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance)
66

7-
- [Changelog](https://github.com/bbqsrc/cucumber-rust/blob/main/codegen/CHANGELOG.md)
7+
- [Changelog](https://github.com/cucumber-rs/cucumber/blob/main/codegen/CHANGELOG.md)
88

99
Code generation for [`cucumber_rust`] tests auto-wiring.
1010

@@ -17,8 +17,8 @@ DO NOT use it directly, use [`cucumber_rust`] crate instead.
1717

1818
This project is licensed under either of
1919

20-
* Apache License, Version 2.0 ([LICENSE-APACHE](https://github.com/bbqsrc/cucumber-rust/blob/main/LICENSE-APACHE) or <http://www.apache.org/licenses/LICENSE-2.0>)
21-
* MIT license ([LICENSE-MIT](https://github.com/bbqsrc/cucumber-rust/blob/main/LICENSE-MIT) or <http://opensource.org/licenses/MIT>)
20+
* Apache License, Version 2.0 ([LICENSE-APACHE](https://github.com/cucumber-rs/cucumber/blob/main/LICENSE-APACHE) or <http://www.apache.org/licenses/LICENSE-2.0>)
21+
* MIT license ([LICENSE-MIT](https://github.com/cucumber-rs/cucumber/blob/main/LICENSE-MIT) or <http://opensource.org/licenses/MIT>)
2222

2323
at your option.
2424

0 commit comments

Comments
 (0)