Skip to content

Commit

Permalink
Release: Bump patch version v0.1.0 -> v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
xFrednet committed Jul 17, 2023
1 parent 52a7375 commit 89ea6d2
Show file tree
Hide file tree
Showing 15 changed files with 30 additions and 30 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ marker_lints = { path = './marker_lints' }
# An external crate via git
marker_lints = { git = "https://github.com/rust-marker/marker" }
# An external crate from a registry
marker_lints = "0.1.0"
marker_lints = "0.1.1"
```

### Running Marker
Expand Down
2 changes: 1 addition & 1 deletion cargo-marker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo_marker"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["marker", "linting", "cli", "cargo", "cargo-subcommand"]
Expand Down
2 changes: 1 addition & 1 deletion cargo-marker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ marker_lints = { path = './marker_lints' }
# An external crate via git
marker_lints = { git = "https://github.com/rust-marker/marker" }
# An external crate from a registry
marker_lints = "0.1.0"
marker_lints = "0.1.1"
```

### Running Marker
Expand Down
4 changes: 2 additions & 2 deletions cargo-marker/src/backend/driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ pub const MARKER_DRIVER_BIN_NAME: &str = "marker_rustc_driver.exe";
/// to install the driver.
pub static DEFAULT_DRIVER_INFO: Lazy<DriverVersionInfo> = Lazy::new(|| DriverVersionInfo {
toolchain: "nightly-2023-07-13".to_string(),
version: "0.1.0".to_string(),
api_version: "0.1.0".to_string(),
version: "0.1.1".to_string(),
api_version: "0.1.1".to_string(),
});

/// The version info of one specific driver
Expand Down
2 changes: 1 addition & 1 deletion cargo-marker/src/exit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const HELP_FOR_NO_LINTS: &str = r#"No lints where specified.
# An external crate via git
marker_lints = { git = "https://github.com/rust-marker/marker" }
# An external crate from a registry
marker_lints = "0.1.0"
marker_lints = "0.1.1"
```
* Try specifying them with the `--lints` argument
Expand Down
6 changes: 3 additions & 3 deletions marker_adapter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marker_adapter"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["marker"]
Expand All @@ -10,8 +10,8 @@ description = "Marker's adapter for common functions shared among lint drivers"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
marker_api = { path = "../marker_api", version = "0.1.0", features = ["driver-api"] }
marker_utils = { path = "../marker_utils", version = "0.1.0" }
marker_api = { path = "../marker_api", version = "0.1.1", features = ["driver-api"] }
marker_utils = { path = "../marker_utils", version = "0.1.1" }

libloading = "0.8.0"
cfg-if = "1.0.0"
2 changes: 1 addition & 1 deletion marker_api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marker_api"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["marker", "linting"]
Expand Down
4 changes: 2 additions & 2 deletions marker_lints/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marker_lints"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["marker", "lint"]
Expand All @@ -13,7 +13,7 @@ description = "Lints for the marker_api and marker_utils crate"
crate-type = ["cdylib"]

[dependencies]
marker_api = { path = "../marker_api", version = "0.1.0" }
marker_api = { path = "../marker_api", version = "0.1.1" }

[dev-dependencies]
marker_uitest = { path = "../marker_uitest", features = ["dev-build"] }
Expand Down
2 changes: 1 addition & 1 deletion marker_lints/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ To use `marker_lints` in your project, simply add it to your `Cargo.toml` under

```toml
[workspace.metadata.marker.lints]
marker_lints = "0.1.0"
marker_lints = "0.1.1"
```

If you want to develop something with Marker, you might want to check out the [lint crate template] which already contains everything you need to get started.
Expand Down
6 changes: 3 additions & 3 deletions marker_rustc_driver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marker_rustc_driver"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["marker", "linting"]
Expand All @@ -11,8 +11,8 @@ build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
marker_api = { path = "../marker_api", version = "0.1.0", features = ["driver-api"] }
marker_adapter = { path = "../marker_adapter", version = "0.1.0" }
marker_api = { path = "../marker_api", version = "0.1.1", features = ["driver-api"] }
marker_adapter = { path = "../marker_adapter", version = "0.1.1" }

rustc_tools_util = "0.3"
bumpalo = "3.12"
Expand Down
4 changes: 2 additions & 2 deletions marker_uilints/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marker_uilints"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
Expand All @@ -11,7 +11,7 @@ publish = false
crate-type = ["cdylib"]

[dependencies]
marker_api = { path = "../marker_api", version = "0.1.0" }
marker_api = { path = "../marker_api", version = "0.1.1" }

[dev-dependencies]
marker_uitest = { path = "../marker_uitest", features = ["dev-build"] }
Expand Down
2 changes: 1 addition & 1 deletion marker_uitest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marker_uitest"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["marker", "linting"]
Expand Down
4 changes: 2 additions & 2 deletions marker_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marker_utils"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["marker", "linting"]
Expand All @@ -11,4 +11,4 @@ description = "Marker's standard library for creating lints"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
marker_api = { path = "../marker_api", version = "0.1.0" }
marker_api = { path = "../marker_api", version = "0.1.1" }
2 changes: 1 addition & 1 deletion marker_utils/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ You can also add [marker_lints] as a lint crate, designed for this crate:

```toml
[workspace.metadata.marker.lints]
marker_lints = "0.1.0"
marker_lints = "0.1.1"
```

If you want to develop something with Marker, you might want to check out the [lint crate template] which already contains everything you need to get started.
Expand Down

0 comments on commit 89ea6d2

Please sign in to comment.