Skip to content

Commit

Permalink
chore(ci): bump crate version
Browse files Browse the repository at this point in the history
  • Loading branch information
arcnmx committed Jun 2, 2024
1 parent 764b64d commit b7125f5
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This crate provides a high-level interface to [PipeWire](https://pipewire.org/)'

``` toml
[dependencies]
wireplumber = { version = "0.1", features = ["v0_5"], git = "https://github.com/arcnmx/wireplumber.rs" }
wireplumber = { version = "0.2", features = ["v0_5"], git = "https://github.com/arcnmx/wireplumber.rs" }
```

# Examples
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wireplumber"
version = "0.1.0" # keep in sync with documentation and html_root_url
version = "0.2.0" # keep in sync with documentation and html_root_url
authors = ["arcnmx"]
build = "build.rs"
edition = "2021"
Expand All @@ -10,7 +10,7 @@ description = "WirePlumber bindings"
keywords = ["pipewire", "wireplumber", "gobject"]
categories = ["multimedia::audio", "api-bindings"]

documentation = "https://arcnmx.github.io/wireplumber.rs/v0.1.0/wireplumber/"
documentation = "https://arcnmx.github.io/wireplumber.rs/v0.2.0/wireplumber/"
repository = "https://github.com/arcnmx/wireplumber.rs"
readme = "src/README.md"
license = "MIT"
Expand Down Expand Up @@ -40,7 +40,7 @@ pipewire-sys = { version = "0.7" }
libspa-sys = { version = "0.7" }
libspa = { version = "0.7", optional = true }
serde = { version = "1.0", optional = true }
ffi = { version = "0.1.0", path = "sys", package = "wireplumber-sys" }
ffi = { version = "0.2.0", path = "sys", package = "wireplumber-sys" }
bitflags = "2"
futures-channel = { version = "0.3", optional = true }
glib-signal = { version = "0.4", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion ci/readme/attrs.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
:url-pw-api: https://docs.pipewire.org/page_api.html
:url-wp: https://pipewire.pages.freedesktop.org/wireplumber/index.html
:wprs-versionfeature: v0_5
:wprs-versionreq: 0.1
:wprs-versionreq: 0.2
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ path = "src/static-link.rs"

[dependencies]
futures = "0.3"
wireplumber = { version = "0.1", features = ["futures", "glib-signal", "v0_5"], path = "../" }
wireplumber = { version = "0.2", features = ["futures", "glib-signal", "v0_5"], path = "../" }
pipewire-sys = "0.7"
glib = { version = "0.19" }
ctrlc = { version = "3.0", features = ["termination"] }
Expand Down
8 changes: 4 additions & 4 deletions src/README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[![latest release](https://img.shields.io/crates/v/wireplumber.svg?style=flat-square)](https://crates.io/crates/wireplumber) [![docs](https://img.shields.io/badge/API-docs-blue.svg?style=flat-square)](https://arcnmx.github.io/wireplumber.rs/v0.1.0/wireplumber/) [![MIT](https://img.shields.io/badge/license-MIT-ff69b4.svg?style=flat-square)](https://github.com/arcnmx/wireplumber.rs/blob/v0.1.0/COPYING)
[![latest release](https://img.shields.io/crates/v/wireplumber.svg?style=flat-square)](https://crates.io/crates/wireplumber) [![docs](https://img.shields.io/badge/API-docs-blue.svg?style=flat-square)](https://arcnmx.github.io/wireplumber.rs/v0.2.0/wireplumber/) [![MIT](https://img.shields.io/badge/license-MIT-ff69b4.svg?style=flat-square)](https://github.com/arcnmx/wireplumber.rs/blob/v0.2.0/COPYING)

This crate provides a high-level interface to [PipeWire](https://pipewire.org/)'s [API](https://docs.pipewire.org/page_api.html) via [libwireplumber](https://pipewire.pages.freedesktop.org/wireplumber/index.html). Explore the [crate documentation](https://arcnmx.github.io/wireplumber.rs/v0.1.0/wireplumber/) and the various [modules](https://arcnmx.github.io/wireplumber.rs/v0.1.0/wireplumber/#modules) for information on how to start using WirePlumber with Rust.
This crate provides a high-level interface to [PipeWire](https://pipewire.org/)'s [API](https://docs.pipewire.org/page_api.html) via [libwireplumber](https://pipewire.pages.freedesktop.org/wireplumber/index.html). Explore the [crate documentation](https://arcnmx.github.io/wireplumber.rs/v0.2.0/wireplumber/) and the various [modules](https://arcnmx.github.io/wireplumber.rs/v0.2.0/wireplumber/#modules) for information on how to start using WirePlumber with Rust.

``` toml
[dependencies]
wireplumber = { version = "0.1", features = ["v0_5"] }
wireplumber = { version = "0.2", features = ["v0_5"] }
```

# Examples

Some [examples](https://github.com/arcnmx/wireplumber.rs/tree/v0.1.0/examples/) are provided that can be built and run via Cargo:
Some [examples](https://github.com/arcnmx/wireplumber.rs/tree/v0.2.0/examples/) are provided that can be built and run via Cargo:

``` bash
$ cargo run -p wp-examples --bin wpexec -- --help
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://arcnmx.github.io/wireplumber.rs/v0.1.0/")]
#![doc(html_root_url = "https://arcnmx.github.io/wireplumber.rs/v0.2.0/")]
#![cfg_attr(docsrs, feature(doc_cfg))]

//! [WirePlumber](https://pipewire.pages.freedesktop.org/wireplumber/index.html) library bindings
Expand Down
2 changes: 1 addition & 1 deletion sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wireplumber-sys"
version = "0.1.0" # keep in sync with html_root_url
version = "0.2.0" # keep in sync with html_root_url
edition = "2021"
build = "./generate/build.rs"

Expand Down
2 changes: 1 addition & 1 deletion sys/src/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[![latest release](https://img.shields.io/crates/v/wireplumber-sys.svg?style=flat-square)](https://crates.io/crates/wireplumber-sys) [![docs](https://img.shields.io/badge/API-docs-blue.svg?style=flat-square)](https://arcnmx.github.io/wireplumber.rs/v0.1.0/wireplumber-sys/) [![MIT](https://img.shields.io/badge/license-MIT-ff69b4.svg?style=flat-square)](https://github.com/arcnmx/wireplumber.rs/blob/v0.1.0/COPYING)
[![latest release](https://img.shields.io/crates/v/wireplumber-sys.svg?style=flat-square)](https://crates.io/crates/wireplumber-sys) [![docs](https://img.shields.io/badge/API-docs-blue.svg?style=flat-square)](https://arcnmx.github.io/wireplumber.rs/v0.2.0/wireplumber-sys/) [![MIT](https://img.shields.io/badge/license-MIT-ff69b4.svg?style=flat-square)](https://github.com/arcnmx/wireplumber.rs/blob/v0.2.0/COPYING)

This crate provides low-level FFI bindings to [libwireplumber](https://pipewire.pages.freedesktop.org/wireplumber/index.html). In most cases, the higher-level [`wireplumber` crate](https://crates.io/crates/wireplumber) is a more appropriate choice over this crate.

0 comments on commit b7125f5

Please sign in to comment.