Skip to content

Commit

Permalink
Merge pull request #60 from filecoin-project/version-consistency
Browse files Browse the repository at this point in the history
Version consistency
  • Loading branch information
kokal33 authored Nov 14, 2023
2 parents 249defa + 833b66d commit fde31fb
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 14 deletions.
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
members = [
"fplus-lib",
"fplus-http-server",
"fplus-cli",
"fplus-database"
"fplus-cli"
]

resolver = "2"
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,7 @@ TBD

### License
TBD

### CHANGELOG
1.0.4
- The database workspace is temporarily removed from the project and as a dependency.
8 changes: 3 additions & 5 deletions fplus-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fplus-cli"
authors = ["jbesraa", "kokal33"]
version = "0.1.3"
authors = ["jbesraa", "kokal33", "clriesco"]
version = "1.0.3"
edition = "2021"
description = "FPlus cli tool to validate different states of an application"
license = "MIT OR Apache-2.0"
Expand All @@ -13,6 +13,4 @@ readme = "README.md"
[dependencies]
actix-web = "4.4.0"
clap = { version = "4.4.6", features = ["derive"] }
fplus-database = "0.1.3"
fplus-lib = "0.1.3"
mongodb = "2.7.0"
fplus-lib = "1.0.3"
9 changes: 5 additions & 4 deletions fplus-http-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[package]
name = "fplus-http-server"
version = "0.1.3"
authors = ["jbesraa", "kokal33", "clriesco"]
version = "1.0.3"
description = "FPlus main http module"
license = "MIT OR Apache-2.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -16,10 +19,8 @@ chrono = "0.4.26"
actix-cors = "0.6.4"
reqwest = { version = "0.11.18", features = ["json"] }
futures = "0.3.28"
mongodb = "2.6.1"
dotenv = "0.15.0"
fplus-lib = "0.1.3"
fplus-database = "0.1.3"
fplus-lib = "1.0.3"
anyhow = "1.0.75"
async-trait = "0.1.73"
uuidv4 = "1.0.0"
Expand Down
4 changes: 2 additions & 2 deletions fplus-lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fplus-lib"
authors = ["jbesraa", "kokal33"]
version = "0.1.3"
authors = ["jbesraa", "kokal33", "clriesco"]
version = "1.0.3"
edition = "2021"
description = "FPlus library/helper files"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion fplus-lib/src/core/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1157,7 +1157,7 @@ mod tests {

// let branches = gh.list_branches().await.unwrap();
let ldn_application = LDNApplication::new_from_issue(CreateApplicationInfo {
issue_number: "473".to_string(),
issue_number: "5".to_string(),
})
.await
.unwrap();
Expand Down

0 comments on commit fde31fb

Please sign in to comment.