diff --git a/CHANGES.md b/CHANGES.md index 45be499..1dbb583 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ # Changelog +-------------------------------------------- +[125.6422.03] - 2024.07.09 + +* Upgrade to WebRTC-SDK M125.6422.03 +* Fix mic indicator not disappearing when muted. +* Allow skipping AudioTrack playstate check through reflection. + -------------------------------------------- [125.6422.02] - 2024.06.15 diff --git a/README.md b/README.md index 6f9ebae..47c26a4 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This library is hosted on Maven Central. To include this library in your project ```gradle dependencies { - implementation 'io.github.webrtc-sdk:android:125.6422.02' + implementation 'io.github.webrtc-sdk:android:125.6422.03' } ``` @@ -19,6 +19,6 @@ avoiding any collisions with other WebRTC libraries: ```gradle dependencies { - implementation 'io.github.webrtc-sdk:android-prefixed:125.6422.02' + implementation 'io.github.webrtc-sdk:android-prefixed:125.6422.03' } ``` \ No newline at end of file diff --git a/RELEASING.md b/RELEASING.md new file mode 100644 index 0000000..4e8e256 --- /dev/null +++ b/RELEASING.md @@ -0,0 +1,9 @@ +# Release Instructions + +1. In the top-level gradle.properties file, update the `VERSION_NAME` property. +1. Update README.md with new version numbers. +1. Update CHANGES.md with change log. +1. Tag with new version number (ensuring that the tag is prefixed with a `v`). +1. Create a new release on Github. +1. Add the `libwebrtc.aar` and `libwebrtc_prefixed.aar` files to the release. +1. Rerun the associated release github action. \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index e69a202..4a3bf89 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=io.github.webrtc-sdk -VERSION_NAME=125.6422.02 +VERSION_NAME=125.6422.03 POM_NAME=WebRTC Android SDK POM_DESCRIPTION=WebRTC Android SDK POM_PACKAGING=aar