Skip to content

Commit 3872c33

Browse files
committed
Infra: Take stable version update from v0.4.3
1 parent e0586af commit 3872c33

File tree

13 files changed

+18
-18
lines changed

13 files changed

+18
-18
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ The following is a small collection of ways you can test Marker right now:
168168

169169
<!-- region replace marker version stable -->
170170
```sh
171-
cargo marker --lints "marker_lints = '0.4.2'"
171+
cargo marker --lints "marker_lints = '0.4.3'"
172172
```
173173
<!-- endregion replace marker version stable -->
174174

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ curl -fsSL https://raw.githubusercontent.com/rust-marker/marker/v0.4/scripts/rel
5959
curl.exe -fsSL https://raw.githubusercontent.com/rust-marker/marker/v0.4/scripts/release/install.ps1 | powershell -command -
6060
```
6161

62-
The provided scripts use a sliding git tag `v0.4`, to allow for automatic patch version updates, however a fixed tag `v0.4.2` is also available.
62+
The provided scripts use a sliding git tag `v0.4`, to allow for automatic patch version updates, however a fixed tag `v0.4.3` is also available.
6363

6464
<!-- endregion replace marker version stable -->
6565

@@ -111,7 +111,7 @@ marker_lints = { path = './marker_lints' }
111111
# An external crate via git
112112
marker_lints = { git = "https://github.com/rust-marker/marker" }
113113
# An external crate from a registry
114-
marker_lints = "0.4.2"
114+
marker_lints = "0.4.3"
115115
```
116116
<!-- endregion replace marker version stable -->
117117

cargo-marker/src/error.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ marker_lints = { path = './marker_lints' }
7070
# An external crate via git
7171
marker_lints = { git = "https://github.com/rust-marker/marker" }
7272
# An external crate from a registry
73-
marker_lints = "0.4.2""#
73+
marker_lints = "0.4.3""#
7474
),
75-
cli_example = display::cli(r#"cargo marker --lints "marker_lints = '0.4.2'""#),
75+
cli_example = display::cli(r#"cargo marker --lints "marker_lints = '0.4.3'""#),
7676
lints = "--lints".blue(),
7777
)
7878
}

docs/book/src/usage/ci.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The git tag specified in the GitHub Action indicates which version of Marker sho
2222

2323
Use this to get automatic patch updates.
2424

25-
- **Fixed tags, like `v0.4.2`:**
25+
- **Fixed tags, like `v0.4.3`:**
2626

2727
Use this to pin a specific patch version. If you find a regression in a patch version, please create a [new issue]. Patch versions must never break anything!
2828

docs/book/src/usage/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ curl -fsSL https://raw.githubusercontent.com/rust-marker/marker/v0.4/scripts/rel
3131
curl.exe -fsSL https://raw.githubusercontent.com/rust-marker/marker/v0.4/scripts/release/install.ps1 | powershell -command -
3232
```
3333

34-
The provided scripts use a sliding git tag `v0.4`, to allow for automatic patch version updates, however a fixed tag `v0.4.2` is also available.
34+
The provided scripts use a sliding git tag `v0.4`, to allow for automatic patch version updates, however a fixed tag `v0.4.3` is also available.
3535

3636
<!-- endregion replace marker version stable -->
3737

docs/book/src/usage/lint-crate-declaration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The main way to declare lint crates, is to add them to the `Cargo.toml` file und
1212
```toml
1313
[workspace.metadata.marker.lints]
1414
# An external crate from a registry
15-
marker_lints = "0.4.2"
15+
marker_lints = "0.4.3"
1616

1717
# An external crate from git
1818
marker_lints = { git = "https://github.com/rust-marker/marker" }
@@ -31,7 +31,7 @@ A lint crate can be specified with the `--lints` option. The string is expected
3131
<!-- region replace marker version stable -->
3232
```sh
3333
# An external crate from a registry
34-
cargo marker --lint "marker_lints = '0.4.2'"
34+
cargo marker --lint "marker_lints = '0.4.3'"
3535

3636
# An external crate from git
3737
cargo marker --lint "marker_lints = { git = 'https://github.com/rust-marker/marker' }"

docs/internal/release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ GitHub is very generous with the releases storage limits. They are [almost unlim
3131
The `sha256` sum is a small file that users may optionally download together with the archive itself to verify the integrity of the archive. It serves as a signature of the artifact to make sure it was downloaded as expected bit-by-bit with what was published effectively detecting corruptions during the download and making it harder to forge artifacts for malicious actors.
3232

3333
<!-- region replace marker version stable -->
34-
This [`install.sh`](https://raw.githubusercontent.com/rust-marker/marker/v0.4.2/scripts/release/install.sh) script, can be used to automatically download and verify Marker's binaries.
34+
This [`install.sh`](https://raw.githubusercontent.com/rust-marker/marker/v0.4.3/scripts/release/install.sh) script, can be used to automatically download and verify Marker's binaries.
3535
<!-- endregion replace marker version stable -->
3636

3737
### Operating system versions coverage

marker_api/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ To get started, create a new Rust crate that compiles to a library (`cargo init
4646
crate-type = ["cdylib"]
4747

4848
[dependencies]
49-
marker_api = "0.4.2"
50-
marker_utils = "0.4.2"
49+
marker_api = "0.4.3"
50+
marker_utils = "0.4.3"
5151
```
5252
<!-- endregion replace marker version stable -->
5353

marker_lints/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ To use `marker_lints` in your project, simply add it to your `Cargo.toml` under
2828
<!-- region replace marker version stable -->
2929
```toml
3030
[workspace.metadata.marker.lints]
31-
marker_lints = "0.4.2"
31+
marker_lints = "0.4.3"
3232
```
3333
<!-- endregion replace marker version stable -->
3434

marker_uitest/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ First add `marker_utils` to the dev-dependencies of the lint crate, and specify
3131
<!-- region replace marker version stable -->
3232
```toml
3333
[dev-dependencies]
34-
marker_uitest = "0.4.2"
34+
marker_uitest = "0.4.3"
3535

3636
[[test]]
3737
name = "uitest"

marker_utils/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ To get started, just include *marker_utils* as a dependency:
2222
<!-- region replace marker version stable -->
2323
```toml
2424
[dependencies]
25-
marker_api = "0.4.2"
25+
marker_api = "0.4.3"
2626
```
2727

2828
You can also add [marker_lints] as a lint crate, designed for this crate:
2929

3030
```toml
3131
[workspace.metadata.marker.lints]
32-
marker_lints = "0.4.2"
32+
marker_lints = "0.4.3"
3333
```
3434
<!-- endregion replace marker version stable -->
3535

scripts/release/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Using config env vars (override these if needed):
6868
# This script isn't meant to be run from `master`, but if it is, then
6969
# it will install the latest version be it a stable version or a pre-release.
7070
# region replace marker version unstable
71-
$version = "0.4.2"
71+
$version = "0.4.3"
7272
# endregion replace marker version unstable
7373

7474
# region replace rust toolchain release

scripts/release/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ echo "Bash version: $BASH_VERSION" >&2
2424
# This script isn't meant to be run from `master`, but if it is, then
2525
# it will install the latest version be it a stable version or a pre-release.
2626
# region replace marker version unstable
27-
version=0.4.2
27+
version=0.4.3
2828
# endregion replace marker version unstable
2929

3030
# region replace rust toolchain release

0 commit comments

Comments
 (0)