Skip to content

Commit

Permalink
remove outdated versions from the active set of version-compatibility…
Browse files Browse the repository at this point in the history
… tests
  • Loading branch information
Voxelot committed May 3, 2023
1 parent 75697b3 commit 875d23e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
10 changes: 8 additions & 2 deletions version-compatibility/Cargo.toml
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"
]
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 875d23e

Please sign in to comment.