Skip to content

Commit 351f740

Browse files
committed
release new version
1 parent 771fddf commit 351f740

File tree

12 files changed

+62
-14
lines changed

12 files changed

+62
-14
lines changed

pulse-binding-mainloop-glib/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 2.29.0 (March 3rd, 2025)
2+
3+
* Bumped MSRV from 1.56 to 1.63 per dependencies.
4+
* Updated required dependencies:
5+
- `libpulse-binding` from 2.28 to 2.29.
6+
- `libpulse-mainloop-glib-sys` from 1.21 to 1.22.
7+
18
# 2.28.1 (July 18th, 2023)
29

310
* Fixed cross-crate version requirements.

pulse-binding-mainloop-glib/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "libpulse-glib-binding"
4-
version = "2.28.1"
4+
version = "2.29.0"
55
authors = ["Lyndon Brown <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"
@@ -13,8 +13,8 @@ exclude = ["README.md"]
1313
rust-version = "1.63"
1414

1515
[dependencies]
16-
libpulse-binding = { path = "../pulse-binding", version = "2.28", default-features = false }
17-
libpulse-mainloop-glib-sys = { path = "../pulse-sys-mainloop-glib", version = "1.21", default-features = false }
16+
libpulse-binding = { path = "../pulse-binding", version = "2.29", default-features = false }
17+
libpulse-mainloop-glib-sys = { path = "../pulse-sys-mainloop-glib", version = "1.22", default-features = false }
1818
glib-sys = { version = "0", default-features = false }
1919
glib = { version = "0", default-features = false }
2020

pulse-binding-simple/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 2.29.0 (March 3rd, 2025)
2+
3+
* Bumped MSRV from 1.56 to 1.63 per dependencies.
4+
* Updated required dependencies:
5+
- `libpulse-binding` from 2.28 to 2.29.
6+
- `libpulse-sys` from 1.21 to 1.22.
7+
- `libpulse-simple-sys` from 1.21 to 1.22.
8+
19
# 2.28.1 (July 18th, 2023)
210

311
* Fixed cross-crate version requirements.

pulse-binding-simple/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "libpulse-simple-binding"
4-
version = "2.28.1"
4+
version = "2.29.0"
55
authors = ["Lyndon Brown <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"
@@ -13,9 +13,9 @@ exclude = ["README.md"]
1313
rust-version = "1.63"
1414

1515
[dependencies]
16-
libpulse-binding = { path = "../pulse-binding", version = "2.28", default-features = false }
17-
libpulse-sys = { path = "../pulse-sys", version = "1.21", default-features = false }
18-
libpulse-simple-sys = { path = "../pulse-sys-simple", version = "1.21", default-features = false }
16+
libpulse-binding = { path = "../pulse-binding", version = "2.29", default-features = false }
17+
libpulse-sys = { path = "../pulse-sys", version = "1.22", default-features = false }
18+
libpulse-simple-sys = { path = "../pulse-sys-simple", version = "1.22", default-features = false }
1919

2020
[features]
2121
default = ["pa_v8"]

pulse-binding/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# 2.29.0 (March 3rd, 2025)
2+
3+
* Bumped MSRV from 1.56 to 1.63 per libc dependency.
4+
* Fixed warnings by removing explicit calls to `clone()` that have become unnecessary.
5+
* Fixed warnings by bumping `num-derive` dependency.
6+
* Bumped `bitflags` dependency to version 2.x (required adding `Debug` to a few flagsets).
7+
* Dropped various constants that were deprecated back in versions 2.20 and 2.21 (December 2020).
8+
* Updated with PA version 17 changes (just an increase to max. sample rate).
9+
* Updated required dependencies:
10+
- `libpulse-sys` from 1.21 to 1.22.
11+
- `num-derive` from 0.3 to 0.4.
12+
- `bitflags` from 1.2 to 2.x.
13+
114
# 2.28.3 (March 2nd, 2025)
215

316
* Clarify in documenation that mainloop and context objects must both live for the entire duration.

pulse-binding/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "libpulse-binding"
4-
version = "2.28.3"
4+
version = "2.29.0"
55
authors = ["Lyndon Brown <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"
@@ -17,7 +17,7 @@ libc = "0.2"
1717
bitflags = "2.0"
1818
num-traits = "0.2"
1919
num-derive = "0.4"
20-
libpulse-sys = { path = "../pulse-sys", version = "1.21", default-features = false }
20+
libpulse-sys = { path = "../pulse-sys", version = "1.22", default-features = false }
2121

2222
[target.'cfg(windows)'.dependencies]
2323
winapi = { version = "0.3", features = ["winsock2"], default-features = false }

pulse-sys-mainloop-glib/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 1.22.0 (March 3rd, 2025)
2+
3+
* Bumped MSRV from 1.56 to 1.63 per dependencies.
4+
* Updated required dependencies:
5+
- `libpulse-sys` from 1.21 to 1.22.
6+
17
# 1.21.1 (July 18th, 2023)
28

39
* Fixed cross-crate version requirement.

pulse-sys-mainloop-glib/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "libpulse-mainloop-glib-sys"
4-
version = "1.21.1"
4+
version = "1.22.0"
55
authors = ["Lyndon Brown <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"
@@ -15,7 +15,7 @@ build = "build.rs"
1515
rust-version = "1.63"
1616

1717
[dependencies]
18-
libpulse-sys = { path = "../pulse-sys", version = "1.21", default-features = false }
18+
libpulse-sys = { path = "../pulse-sys", version = "1.22", default-features = false }
1919
glib-sys = { version = "0", default-features = false }
2020

2121
[build-dependencies]

pulse-sys-simple/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 1.22.0 (March 3rd, 2025)
2+
3+
* Bumped MSRV from 1.56 to 1.63 per dependencies.
4+
* Updated required dependencies:
5+
- `libpulse-sys` from 1.21 to 1.22.
6+
17
# 1.21.1 (July 18th, 2023)
28

39
* Fixed cross-crate version requirement.

pulse-sys-simple/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "libpulse-simple-sys"
4-
version = "1.21.1"
4+
version = "1.22.0"
55
authors = ["Lyndon Brown <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"
@@ -15,7 +15,7 @@ build = "build.rs"
1515
rust-version = "1.63"
1616

1717
[dependencies]
18-
libpulse-sys = { path = "../pulse-sys", version = "1.21", default-features = false }
18+
libpulse-sys = { path = "../pulse-sys", version = "1.22", default-features = false }
1919

2020
[build-dependencies]
2121
pkg-config = "0.3.23"

pulse-sys/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 1.22.0 (March 3rd, 2025)
2+
3+
* Bumped MSRV from 1.56 to 1.63 per libc dependency.
4+
* Fixed warnings by bumping `num-derive` dependency.
5+
* Updated with PA version 17 changes (just an increase to max. sample rate).
6+
* Updated required dependencies:
7+
- `num-derive` from 0.3 to 0.4.
8+
19
# 1.21.0 (July 18th, 2023)
210

311
* Fixed warning from clashing namespace exports.

pulse-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "libpulse-sys"
4-
version = "1.21.0"
4+
version = "1.22.0"
55
authors = ["Lyndon Brown <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"

0 commit comments

Comments
 (0)