Skip to content

Commit 8148ed3

Browse files
🚀 Release v0.4.3
1 parent 8d93116 commit 8148ed3

File tree

16 files changed

+34
-34
lines changed

16 files changed

+34
-34
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

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ license = "MIT OR Apache-2.0"
2626
repository = "https://github.com/rust-marker/marker"
2727

2828
# region replace marker version dev
29-
version = "0.4.3-dev"
29+
version = "0.4.3"
3030
# endregion replace marker version dev
3131

3232
# The MSRV is applied to the public library crates published to crates.io
3333
rust-version = "1.66"
3434

3535
[workspace.dependencies]
3636
# region replace marker version dev
37-
marker_adapter = { path = "./marker_adapter", version = "0.4.3-dev" }
38-
marker_api = { path = "./marker_api", version = "0.4.3-dev" }
39-
marker_error = { path = "./marker_error", version = "0.4.3-dev" }
37+
marker_adapter = { path = "./marker_adapter", version = "0.4.3" }
38+
marker_api = { path = "./marker_api", version = "0.4.3" }
39+
marker_error = { path = "./marker_error", version = "0.4.3" }
4040
marker_uitest = { path = "./marker_uitest", features = ["dev-build"] }
41-
marker_utils = { path = "./marker_utils", version = "0.4.3-dev" }
41+
marker_utils = { path = "./marker_utils", version = "0.4.3" }
4242
# endregion replace marker version dev
4343

4444
bumpalo = "3.14"

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/backend/driver.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ pub(crate) fn default_driver_info() -> DriverVersionInfo {
2121
toolchain: "nightly-2023-11-16".to_string(),
2222
// endregion replace rust toolchain dev
2323
// region replace marker version dev
24-
version: "0.4.3-dev".to_string(),
25-
api_version: "0.4.3-dev".to_string(),
24+
version: "0.4.3".to_string(),
25+
api_version: "0.4.3".to_string(),
2626
// endregion replace marker version dev
2727
}
2828
}

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)