Skip to content

Commit

Permalink
Merge branch 'release/2024.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
miosakuma committed Apr 23, 2024
2 parents 1a86f5a + a780a78 commit 749d28b
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '18'
Expand All @@ -29,3 +29,11 @@ jobs:
run: ./gradlew build
- name: Lint Check
run: ./gradlew ktlintCheck
- name: Slack Notification
if: failure()
uses: rtCamp/action-slack-notify@v2
env:
SLACK_CHANNEL: sora-android-sdk
SLACK_COLOR: danger
SLACK_TITLE: Build failed
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@

## develop

## 2024.2.0

- [UPDATE] libwebrtc を 122.6261.1.0 に上げる
- @miosakuma
- [UPDATE] Github Actions の actions/setup-java@v4 にあげる
- @miosakuma

## 2024.1.1

- [FIX] jitpack.yml を追加して jdk のバージョンを 11 に指定する
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Sora Android SDK

[![Release](https://jitpack.io/v/shiguredo/sora-android-sdk.svg)](https://jitpack.io/#shiguredo/sora-android-sdk)
[![libwebrtc](https://img.shields.io/badge/libwebrtc-121.6167-blue.svg)](https://chromium.googlesource.com/external/webrtc/+/branch-heads/6167)
[![libwebrtc](https://img.shields.io/badge/libwebrtc-122.6261-blue.svg)](https://chromium.googlesource.com/external/webrtc/+/branch-heads/6261)
[![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/shiguredo/sora-android-sdk.svg)](https://github.com/shiguredo/sora-android-sdk.svg)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'org.jetbrains.dokka'

buildscript {
ext.kotlin_version = '1.8.10'
ext.libwebrtc_version = '121.6167.4.0'
ext.libwebrtc_version = '122.6261.1.0'

ext.dokka_version = '1.8.10'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import org.webrtc.WebrtcBuildVersion

class SDKInfo {
companion object {
const val version = "2024.1.1"
const val version = "2024.2.0"

fun sdkInfo(): String {
return "Sora Android SDK $version (${BuildConfig.REVISION})"
Expand Down

0 comments on commit 749d28b

Please sign in to comment.