Skip to content

Commit

Permalink
version compatibility cleanup (FuelLabs#1171)
Browse files Browse the repository at this point in the history
The versions being tested for backwards compatibility are no longer
supported, so I've excluded them from the workspace to avoid spending ci
hours on these.
  • Loading branch information
Voxelot authored May 4, 2023
1 parent 1272248 commit def8878
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
8 changes: 7 additions & 1 deletion version-compatibility/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
[workspace]
resolver = "2"
members = [
# 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",
"0.14.1-0.15.0/fuel-core:0.15.0-client:0.14.1"
]
11 changes: 11 additions & 0 deletions version-compatibility/placeholder/Cargo.toml
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]
3 changes: 3 additions & 0 deletions version-compatibility/placeholder/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

0 comments on commit def8878

Please sign in to comment.