From d2afc24f4a5953f521f6428f09f4d9c4bfd1ac3d Mon Sep 17 00:00:00 2001 From: evdokimovs <49490279+evdokimovs@users.noreply.github.com> Date: Thu, 5 Dec 2024 17:27:12 -0300 Subject: [PATCH] Upgrade OpenAL library from 1.24.0 to 1.24.1 version (#182) --- .github/workflows/ci.yml | 2 +- CHANGELOG.md | 7 ++++--- README.md | 2 +- crates/libwebrtc-sys/build.rs | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 141befa81b..396a301722 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -139,7 +139,7 @@ jobs: - windows runs-on: ${{ (matrix.platform == 'macos' && 'macos-13') || (matrix.platform == 'windows' && 'windows-latest') - || 'ubuntu-latest' }} + || 'ubuntu-20.04' }} steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@v1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 38e9d3038d..b7d0f6aa5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,19 +6,20 @@ All user visible changes to this project will be documented in this file. This p -## [0.11.3] · Unreleased +## [0.11.3] · unreleased [0.11.3]: https://github.com/instrumentisto/medea-flutter-webrtc/tree/0.11.3 [Diff](https://github.com/instrumentisto/medea-flutter-webrtc/compare/0.11.2...0.11.3) ### Changed -- Upgraded [OpenAL] library to [1.24.0][openal-1.24.0] version. ([#181]) +- Upgraded [OpenAL] library to [1.24.1][openal-1.24.1] version. ([#182], [#181]) - Upgraded [libwebrtc] to [131.0.6778.85-r1] version. ([#180]) [#180]: https://github.com/instrumentisto/medea-flutter-webrtc/pull/180 [#181]: https://github.com/instrumentisto/medea-flutter-webrtc/pull/181 -[openal-1.24.0]: https://github.com/kcat/openal-soft/releases/tag/1.24.0 +[#182]: https://github.com/instrumentisto/medea-flutter-webrtc/pull/182 +[openal-1.24.1]: https://github.com/kcat/openal-soft/releases/tag/1.24.1 [131.0.6778.85-r1]: https://github.com/instrumentisto/libwebrtc-bin/releases/tag/131.0.6778.85-r1 diff --git a/README.md b/README.md index a752edbd61..62c170fe19 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Medea Flutter-WebRTC [![pub](https://img.shields.io/pub/v/medea_flutter_webrtc "pub")](https://pub.dev/packages/medea_flutter_webrtc) [![libwebrtc](https://img.shields.io/badge/libwebrtc-131.0.6778.85--r1-blue "libwebrtc")](https://github.com/instrumentisto/libwebrtc-bin/releases/tag/131.0.6778.85-r1) -[![OpenAL](https://img.shields.io/badge/OpenAL-1.24.0-blue "OpenAL")](https://github.com/kcat/openal-soft/releases/tag/1.24.0) +[![OpenAL](https://img.shields.io/badge/OpenAL-1.24.1-blue "OpenAL")](https://github.com/kcat/openal-soft/releases/tag/1.24.1) [Changelog](https://github.com/instrumentisto/medea-flutter-webrtc/blob/main/CHANGELOG.md) diff --git a/crates/libwebrtc-sys/build.rs b/crates/libwebrtc-sys/build.rs index b86590838d..34d4e0727f 100644 --- a/crates/libwebrtc-sys/build.rs +++ b/crates/libwebrtc-sys/build.rs @@ -31,7 +31,7 @@ static LIBWEBRTC_URL: &str = /// URL for downloading `openal-soft` source code. static OPENAL_URL: &str = - "https://github.com/kcat/openal-soft/archive/refs/tags/1.24.0"; + "https://github.com/kcat/openal-soft/archive/refs/tags/1.24.1"; fn main() -> anyhow::Result<()> { let lib_dir = libpath()?;