rust: Bump semver, add feature for current release

There were some changes to the sys API for introspection fixes.
And add a feature for the current release, which is something
I'll add to the checklist for releases.
This commit is contained in:
Colin Walters 2022-06-07 17:59:02 -04:00
parent 2b6f506f70
commit 4806d84f56
3 changed files with 9 additions and 4 deletions

View File

@ -11,7 +11,7 @@ on:
env: env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
CARGO_PROJECT_FEATURES: "v2021_3" CARGO_PROJECT_FEATURES: "v2021_5"
# Minimum supported Rust version (MSRV) # Minimum supported Rust version (MSRV)
ACTION_MSRV_TOOLCHAIN: 1.54.0 ACTION_MSRV_TOOLCHAIN: 1.54.0
# Pinned toolchain for linting # Pinned toolchain for linting

View File

@ -8,7 +8,7 @@ license = "MIT"
name = "ostree" name = "ostree"
readme = "README.md" readme = "README.md"
repository = "https://github.com/ostreedev/ostree-rs" repository = "https://github.com/ostreedev/ostree-rs"
version = "0.13.6" version = "0.14.0"
exclude = [ exclude = [
"rust-bindings/conf/**", "rust-bindings/conf/**",
@ -32,7 +32,7 @@ members = [".", "rust-bindings/sys"]
bitflags = "1.2.1" bitflags = "1.2.1"
cap-std = { version = "0.24", optional = true} cap-std = { version = "0.24", optional = true}
io-lifetimes = { version = "0.5", optional = true} io-lifetimes = { version = "0.5", optional = true}
ffi = { package = "ostree-sys", path = "rust-bindings/sys", version = "0.9.1" } ffi = { package = "ostree-sys", path = "rust-bindings/sys", version = "0.10.0" }
gio = "0.14" gio = "0.14"
glib = "0.14.4" glib = "0.14.4"
hex = "0.4.2" hex = "0.4.2"
@ -92,3 +92,4 @@ v2021_2 = ["v2021_1", "ffi/v2021_2"]
v2021_3 = ["v2021_2", "ffi/v2021_3"] v2021_3 = ["v2021_2", "ffi/v2021_3"]
v2021_4 = ["v2021_3", "ffi/v2021_4"] v2021_4 = ["v2021_3", "ffi/v2021_4"]
v2021_5 = ["v2021_4", "ffi/v2021_5"] v2021_5 = ["v2021_4", "ffi/v2021_5"]
v2022_5 = ["v2021_5", "ffi/v2022_5"]

View File

@ -56,6 +56,7 @@ v2021_3 = ["v2021_2"]
v2021_4 = ["v2021_3"] v2021_4 = ["v2021_3"]
v2021_5 = ["v2021_4"] v2021_5 = ["v2021_4"]
v2022_2 = ["v2021_5"] v2022_2 = ["v2021_5"]
v2022_5 = ["v2022_2"]
[lib] [lib]
name = "ostree_sys" name = "ostree_sys"
@ -71,7 +72,7 @@ license = "MIT"
links = "ostree-1" links = "ostree-1"
name = "ostree-sys" name = "ostree-sys"
repository = "https://github.com/ostreedev/ostree-rs" repository = "https://github.com/ostreedev/ostree-rs"
version = "0.9.2" version = "0.10.0"
edition = "2018" edition = "2018"
[package.metadata.docs.rs] [package.metadata.docs.rs]
features = ["dox"] features = ["dox"]
@ -207,3 +208,6 @@ version = "2021.5"
[package.metadata.system-deps.ostree_1.v2022_2] [package.metadata.system-deps.ostree_1.v2022_2]
version = "2022.2" version = "2022.2"
[package.metadata.system-deps.ostree_1.v2022_5]
version = "2022.5"