Skip to content

Commit 6665c82

Browse files
committed
chore(version): bump to 3.0.0-RC2
1 parent 888f288 commit 6665c82

File tree

3 files changed

+19
-7
lines changed

3 files changed

+19
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Changelog
22
==========
33

4+
Version 3.0.0-RC2
5+
----------------
6+
7+
## Features:
8+
9+
- MediaProjection: add a dedicated `Service` to handle screen recording.
10+
11+
## Bug fixes:
12+
13+
- Multiple fixes on MediaProjection
14+
- Fix HDR support for cameras
15+
416
Version 3.0.0-RC
517
----------------
618

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ Get StreamPack core latest artifacts on Maven Central:
1111

1212
```groovy
1313
dependencies {
14-
implementation 'io.github.thibaultbee.streampack:streampack-core:3.0.0-RC'
14+
implementation 'io.github.thibaultbee.streampack:streampack-core:3.0.0-RC2'
1515
// For UI (incl. PreviewView)
16-
implementation 'io.github.thibaultbee.streampack:streampack-ui:3.0.0-RC'
16+
implementation 'io.github.thibaultbee.streampack:streampack-ui:3.0.0-RC2'
1717
// For services (incl. screen capture/media projection service)
18-
implementation 'io.github.thibaultbee.streampack:streampack-services:3.0.0-RC'
18+
implementation 'io.github.thibaultbee.streampack:streampack-services:3.0.0-RC2'
1919
// For RTMP
20-
implementation 'io.github.thibaultbee.streampack:streampack-extension-rtmp:3.0.0-RC'
20+
implementation 'io.github.thibaultbee.streampack:streampack-extension-rtmp:3.0.0-RC2'
2121
// For SRT
22-
implementation 'io.github.thibaultbee.streampack:streampack-extension-srt:3.0.0-RC'
22+
implementation 'io.github.thibaultbee.streampack:streampack-extension-srt:3.0.0-RC2'
2323
}
2424
```
2525

@@ -249,7 +249,7 @@ For a complete example, check out the [demos/camera](demos/camera) directory.
249249

250250
```groovy
251251
dependencies {
252-
implementation 'io.github.thibaultbee.streampack:streampack-services:3.0.0-RC'
252+
implementation 'io.github.thibaultbee.streampack:streampack-services:3.0.0-RC2'
253253
}
254254
```
255255

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010

1111
allprojects {
1212
val versionCode by extra { 3_000_000 }
13-
val versionName by extra { "3.0.0-RC" }
13+
val versionName by extra { "3.0.0-RC2" }
1414

1515
group = "io.github.thibaultbee.streampack"
1616
version = versionName

0 commit comments

Comments
 (0)