Skip to content

Commit 55f488d

Browse files
committed
chore(version): bump to 3.0.0-RC
1 parent 0c2bc18 commit 55f488d

File tree

3 files changed

+21
-7
lines changed

3 files changed

+21
-7
lines changed

CHANGELOG.md

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

4+
Version 3.0.0-RC
5+
----------------
6+
7+
Version 3.0.0-RC is a release candidate for the next major version of StreamPack. It includes:
8+
9+
- dynamic endpoint: the endpoint (RTMP, SRT, File,...) is inferred from the stream URL.
10+
- multiple outputs: you can now stream to multiple endpoints at the same time.
11+
- dynamic input: you can set the input source (camera, screen, file,...) at runtime.
12+
- a new file writer based on Android `MediaMuxer`.
13+
- package have been moved, renamed and splits.
14+
15+
For the migration, see
16+
the [migration guide](https://github.com/ThibaultBee/StreamPack/wiki/Migration-from-2.6.X-to-3.X.X).
17+
418
Version 2.6.1
519
-------------
620

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'
14+
implementation 'io.github.thibaultbee.streampack:streampack-core:3.0.0-RC'
1515
// For UI (incl. PreviewView)
16-
implementation 'io.github.thibaultbee.streampack:streampack-ui:3.0.0'
16+
implementation 'io.github.thibaultbee.streampack:streampack-ui:3.0.0-RC'
1717
// For ScreenRecorder service
18-
implementation 'io.github.thibaultbee.streampack:streampack-services:3.0.0'
18+
implementation 'io.github.thibaultbee.streampack:streampack-services:3.0.0-RC'
1919
// For RTMP
20-
implementation 'io.github.thibaultbee.streampack:streampack-extension-rtmp:3.0.0'
20+
implementation 'io.github.thibaultbee.streampack:streampack-extension-rtmp:3.0.0-RC'
2121
// For SRT
22-
implementation 'io.github.thibaultbee.streampack:streampack-extension-srt:3.0.0'
22+
implementation 'io.github.thibaultbee.streampack:streampack-extension-srt:3.0.0-RC'
2323
}
2424
```
2525

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

244244
```groovy
245245
dependencies {
246-
implementation 'io.github.thibaultbee.streampack:streampack-services:3.0.0'
246+
implementation 'io.github.thibaultbee.streampack:streampack-services:3.0.0-RC'
247247
}
248248
```
249249

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-SNAPSHOT" }
13+
val versionName by extra { "3.0.0-RC" }
1414

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

0 commit comments

Comments
 (0)