-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove outdated versions from the active set of version-compatibility…
… tests
- Loading branch information
Showing
3 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
[workspace] | ||
resolver = "2" | ||
members = [ | ||
"0.14.1-0.15.0/fuel-core:0.14.1-client:0.15.0", | ||
"0.14.1-0.15.0/fuel-core:0.15.0-client:0.14.1", | ||
# Add new versions here when testing backwards compatibility between fuel-core-client and fuel-core | ||
"placeholder" | ||
] | ||
|
||
# exclude previous versions no longer maintained | ||
exclude = [ | ||
"0.14.1-0.15.0/fuel-core:0.14.1-client:0.15.0", | ||
"0.14.1-0.15.0/fuel-core:0.15.0-client:0.14.1" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[package] | ||
name = "placeholder" | ||
version = "0.1.0" | ||
edition = "2021" | ||
publish = false | ||
license = "BUSL-1.1" | ||
description = "placeholder for version compatibility tests" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
fn main() { | ||
println!("Hello, world!"); | ||
} |