Skip to content

Commit a1f5d31

Browse files
committed
replace references to master branch with main
1 parent a60b855 commit a1f5d31

File tree

30 files changed

+94
-94
lines changed

30 files changed

+94
-94
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
![Tracing — Structured, application-level diagnostics][splash]
22

3-
[splash]: https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/splash.svg
3+
[splash]: https://raw.githubusercontent.com/tokio-rs/tracing/main/assets/splash.svg
44

55
[![Crates.io][crates-badge]][crates-url]
66
[![Documentation][docs-badge]][docs-url]
7-
[![Documentation (master)][docs-master-badge]][docs-master-url]
7+
[![Documentation (v0.2.x)][docs-v0.2.x-badge]][docs-v0.2.x-url]
88
[![MIT licensed][mit-badge]][mit-url]
99
[![Build Status][actions-badge]][actions-url]
1010
[![Discord chat][discord-badge]][discord-url]
@@ -13,8 +13,8 @@
1313
[crates-url]: https://crates.io/crates/tracing
1414
[docs-badge]: https://docs.rs/tracing/badge.svg
1515
[docs-url]: https://docs.rs/tracing
16-
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
17-
[docs-master-url]: https://tracing.rs
16+
[docs-0.2-badge]: https://img.shields.io/badge/docs-v0.2.x-blue
17+
[docs-0.2-url]: https://tracing.rs
1818
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
1919
[mit-url]: LICENSE
2020
[actions-badge]: https://github.com/tokio-rs/tracing/workflows/CI/badge.svg
@@ -23,7 +23,7 @@
2323
[discord-url]: https://discord.gg/EeF3cQw
2424

2525
[Website](https://tokio.rs) |
26-
[Chat](https://discord.gg/EeF3cQw) | [Documentation (master branch)](https://tracing-rs.netlify.com/)
26+
[Chat](https://discord.gg/EeF3cQw)
2727

2828
## Overview
2929

@@ -33,9 +33,9 @@ Tokio project, but does _not_ require the `tokio` runtime to be used.
3333

3434
### Branch set-up
3535

36-
- `main` - Default branch, crates.io releases are done from this branch. This was previously the
36+
- [`main`](https://github.com/tokio-rs/tracing/tree/main) - Default branch, crates.io releases are done from this branch. This was previously the
3737
`v0.1.x` branch.
38-
- `v0.2.x` - Branch containing the as-yet unreleased 0.2 version of `tracing-core`, `tracing`, and
38+
- [`v0.2.x`](https://github.com/tokio-rs/tracing/tree/v0.2.x) - Branch containing the as-yet unreleased 0.2 version of `tracing-core`, `tracing`, and
3939
all the other tracing crates that depend on these versions. This was previously the `master`
4040
branch.
4141

tracing-appender/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
![Tracing — Structured, application-level diagnostics][splash]
22

3-
[splash]: https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/splash.svg
3+
[splash]: https://raw.githubusercontent.com/tokio-rs/tracing/main/assets/splash.svg
44

55
# tracing-appender
66

77
Writers for logging events and spans
88

99
[![Crates.io][crates-badge]][crates-url]
1010
[![Documentation][docs-badge]][docs-url]
11-
[![Documentation (master)][docs-master-badge]][docs-master-url]
11+
[![Documentation (v0.2.x)][docs-v0.2.x-badge]][docs-v0.2.x-url]
1212
[![MIT licensed][mit-badge]][mit-url]
1313
[![Build Status][actions-badge]][actions-url]
1414
[![Discord chat][discord-badge]][discord-url]
@@ -19,8 +19,8 @@ Writers for logging events and spans
1919
[crates-url]: https://crates.io/crates/tracing-appender/0.2.2
2020
[docs-badge]: https://docs.rs/tracing-appender/badge.svg
2121
[docs-url]: https://docs.rs/tracing-appender/0.2.2
22-
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
23-
[docs-master-url]: https://tracing.rs/tracing-appender
22+
[docs-v0.2.x-badge]: https://img.shields.io/badge/docs-v0.2.x-blue
23+
[docs-v0.2.x-url]: https://tracing.rs/tracing-appender
2424
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
2525
[mit-url]: ../LICENSE
2626
[actions-badge]: https://github.com/tokio-rs/tracing/workflows/CI/badge.svg

tracing-appender/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
//! long as doing so complies with this policy.
137137
//!
138138
#![doc(
139-
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
139+
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/main/assets/logo-type.png",
140140
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"
141141
)]
142142
#![cfg_attr(docsrs, deny(rustdoc::broken_intra_doc_links))]

tracing-attributes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "tracing-attributes"
44
# - Remove path dependencies
55
# - Update doc url in README.md.
66
# - Update CHANGELOG.md.
7-
# - Create "v0.1.x" git tag.
7+
# - Create "tracing-attributes-0.1.x" git tag.
88
version = "0.1.28"
99
authors = [
1010
"Tokio Contributors <team@tokio.rs>",

tracing-attributes/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
![Tracing — Structured, application-level diagnostics][splash]
22

3-
[splash]: https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/splash.svg
3+
[splash]: https://raw.githubusercontent.com/tokio-rs/tracing/main/assets/splash.svg
44

55
# tracing-attributes
66

77
Macro attributes for application-level tracing.
88

99
[![Crates.io][crates-badge]][crates-url]
1010
[![Documentation][docs-badge]][docs-url]
11-
[![Documentation (master)][docs-master-badge]][docs-master-url]
11+
[![Documentation (v0.2.x)][docs-v0.2.x-badge]][docs-v0.2.x-url]
1212
[![MIT licensed][mit-badge]][mit-url]
1313
[![Build Status][actions-badge]][actions-url]
1414
[![Discord chat][discord-badge]][discord-url]
@@ -19,8 +19,8 @@ Macro attributes for application-level tracing.
1919
[crates-url]: https://crates.io/crates/tracing-attributes
2020
[docs-badge]: https://docs.rs/tracing-attributes/badge.svg
2121
[docs-url]: https://docs.rs/tracing-attributes/0.1.28
22-
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
23-
[docs-master-url]: https://tracing-rs.netlify.com/tracing_attributes
22+
[docs-v0.2.x-badge]: https://img.shields.io/badge/docs-v0.2.x-blue
23+
[docs-v0.2.x-url]: https://tracing-rs.netlify.com/tracing_attributes
2424
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
2525
[mit-url]: LICENSE
2626
[actions-badge]: https://github.com/tokio-rs/tracing/workflows/CI/badge.svg

tracing-attributes/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
//! long as doing so complies with this policy.
5454
//!
5555
#![doc(
56-
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
56+
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/main/assets/logo-type.png",
5757
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"
5858
)]
5959
#![cfg_attr(docsrs, deny(rustdoc::broken_intra_doc_links))]

tracing-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name = "tracing-core"
55
# - Update html_root_url.
66
# - Update doc url in README.md.
77
# - Update CHANGELOG.md.
8-
# - Create "v0.1.x" git tag.
8+
# - Create "tracing-core-0.1.x" git tag.
99
version = "0.1.33"
1010
authors = ["Tokio Contributors <team@tokio.rs>"]
1111
license = "MIT"

tracing-core/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
![Tracing — Structured, application-level diagnostics][splash]
22

3-
[splash]: https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/splash.svg
3+
[splash]: https://raw.githubusercontent.com/tokio-rs/tracing/main/assets/splash.svg
44

55
# tracing-core
66

77
Core primitives for application-level tracing.
88

99
[![Crates.io][crates-badge]][crates-url]
1010
[![Documentation][docs-badge]][docs-url]
11-
[![Documentation (master)][docs-master-badge]][docs-master-url]
11+
[![Documentation (v0.2.x)][docs-v0.2.x-badge]][docs-v0.2.x-url]
1212
[![MIT licensed][mit-badge]][mit-url]
1313
[![Build Status][actions-badge]][actions-url]
1414
[![Discord chat][discord-badge]][discord-url]
@@ -19,8 +19,8 @@ Core primitives for application-level tracing.
1919
[crates-url]: https://crates.io/crates/tracing-core/0.1.33
2020
[docs-badge]: https://docs.rs/tracing-core/badge.svg
2121
[docs-url]: https://docs.rs/tracing-core/0.1.33
22-
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
23-
[docs-master-url]: https://tracing-rs.netlify.com/tracing_core
22+
[docs-v0.2.x-badge]: https://img.shields.io/badge/docs-v0.2.x-blue
23+
[docs-v0.2.x-url]: https://tracing-rs.netlify.com/tracing_core
2424
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
2525
[mit-url]: LICENSE
2626
[actions-badge]: https://github.com/tokio-rs/tracing/workflows/CI/badge.svg

tracing-core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
//! [`tokio-rs/tracing`]: https://github.com/tokio-rs/tracing
118118
//! [`tracing`]: https://crates.io/crates/tracing
119119
#![doc(
120-
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
120+
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/main/assets/logo-type.png",
121121
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"
122122
)]
123123
#![cfg_attr(not(feature = "std"), no_std)]

tracing-error/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![Tracing — Structured, application-level diagnostics][splash]
22

3-
[splash]: https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/splash.svg
3+
[splash]: https://raw.githubusercontent.com/tokio-rs/tracing/main/assets/splash.svg
44

55
# tracing-error
66

@@ -9,20 +9,20 @@ information.
99

1010
[![Crates.io][crates-badge]][crates-url]
1111
[![Documentation][docs-badge]][docs-url]
12-
[![Documentation (master)][docs-master-badge]][docs-master-url]
12+
[![Documentation (v0.2.x)][docs-v0.2.x-badge]][docs-v0.2.x-url]
1313
[![MIT licensed][mit-badge]][mit-url]
1414
[![Build Status][actions-badge]][actions-url]
1515
[![Discord chat][discord-badge]][discord-url]
1616
![maintenance status][maint-badge]
1717

18-
[Documentation (release)][docs-url] | [Documentation (master)][docs-master-url] | [Chat][discord-url]
18+
[Documentation (release)][docs-url] | [Documentation (v0.2.x)][docs-v0.2.x-url] | [Chat][discord-url]
1919

2020
[crates-badge]: https://img.shields.io/crates/v/tracing-error.svg
2121
[crates-url]: https://crates.io/crates/tracing-error/0.2.1
2222
[docs-badge]: https://docs.rs/tracing-error/badge.svg
2323
[docs-url]: https://docs.rs/tracing-error/0.2.1/tracing_error
24-
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
25-
[docs-master-url]: https://tracing-rs.netlify.com/tracing_error
24+
[docs-v0.2.x-badge]: https://img.shields.io/badge/docs-v0.2.x-blue
25+
[docs-v0.2.x-url]: https://tracing-rs.netlify.com/tracing_error
2626
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
2727
[mit-url]: LICENSE
2828
[actions-badge]: https://github.com/tokio-rs/tracing/workflows/CI/badge.svg

0 commit comments

Comments
 (0)