Skip to content

Commit

Permalink
all(deps): Bump uplink-c version to v1.9.0
Browse files Browse the repository at this point in the history
Bump the uplink-c version to the last published release v1.9.0 (minor
release) and bindgen.

Bump the uplink-sys crate version to a new minor release to reflect
these dependencies updates.

Update uplink crate to use the new uplink-sys version and bump it to a
new minor release to reflect this dependency update.
  • Loading branch information
ifraixedes committed May 30, 2024
1 parent 9f4663a commit 0bda70c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Binary file modified uplink-sys/.docs-rs/libuplink.a
Binary file not shown.
2 changes: 1 addition & 1 deletion uplink-sys/.docs-rs/libuplink.pc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ libdir=${exec_prefix}/lib

Name: uplink
Description: C library for Storj V3 Network.
Version: 1.8.1
Version: 1.9.0
Cflags: -I${includedir}
Libs: -L${libdir} -luplink
Libs.private: -lpthread
Binary file modified uplink-sys/.docs-rs/libuplink.so
Binary file not shown.
6 changes: 3 additions & 3 deletions uplink-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uplink-sys"
version = "0.6.1"
version = "0.7.0"
authors = ["Cameron Fyfe <cameron.j.fyfe@gmail.com>", "utropicmedia"]
edition = "2021"
links = "uplink"
Expand All @@ -12,13 +12,13 @@ keywords = ["storj", "storage"]

# Contains relevant information of the Uplink c-binding.
[package.metadata.uplink-c]
version = "1.8.1" # keep it manually in sync with the git-submodule uplink-c checkout version tag.
version = "1.9.0" # keep it manually in sync with the git-submodule uplink-c checkout version tag.

[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
targets = [] # Do not build the doc with any other target than the default.

[build-dependencies]
bindgen = "0.68.1"
bindgen = "0.69.4"

[dependencies]
2 changes: 1 addition & 1 deletion uplink-sys/uplink-c
Submodule uplink-c updated 6 files
+2 −2 Jenkinsfile
+6 −2 README.md
+14 −13 go.mod
+34 −43 go.sum
+96 −49 testsuite/go.mod
+1,463 −201 testsuite/go.sum
4 changes: 2 additions & 2 deletions uplink/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uplink"
version = "0.8.1"
version = "0.9.0"
authors = ["Ivan Fraixedes <ivan@fraixed.es>"]
edition = "2021"
description = "Idiomatic and safe Rust binding for the Storj Lib Uplink"
Expand All @@ -12,7 +12,7 @@ homepage = "https://storj.io"


[dependencies]
uplink-sys = { path = "../uplink-sys", version = "0.6.1" }
uplink-sys = { path = "../uplink-sys", version = "0.7.0" }

[dev-dependencies]
rand = "0.8.5"

0 comments on commit 0bda70c

Please sign in to comment.