Skip to content

Commit b5d02ea

Browse files
committed
chore(version): bump to 3.0.2
1 parent 52beae1 commit b5d02ea

File tree

3 files changed

+22
-7
lines changed

3 files changed

+22
-7
lines changed

CHANGELOG.md

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

4+
Version 3.0.2
5+
----------------
6+
7+
## Features:
8+
9+
- `DualStreamer`: improve the set audio/video configuration API.
10+
- Add an API to invalidate the configuration of a configurable output.
11+
12+
## Bug fixes:
13+
14+
- Fix a crash when trying to change the FPS of a configurable output
15+
- Fix video aspect ratio when using multiple outputs with different aspect ratios.
16+
- Do not emit audio/video source changed events when the configuration failed to be applied.
17+
18+
419
Version 3.0.1
520
----------------
621

README.md

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

1818
```groovy
1919
dependencies {
20-
implementation 'io.github.thibaultbee.streampack:streampack-core:3.0.1'
20+
implementation 'io.github.thibaultbee.streampack:streampack-core:3.0.2'
2121
// For UI (incl. PreviewView)
22-
implementation 'io.github.thibaultbee.streampack:streampack-ui:3.0.1'
22+
implementation 'io.github.thibaultbee.streampack:streampack-ui:3.0.2'
2323
// For services (incl. screen capture/media projection service)
24-
implementation 'io.github.thibaultbee.streampack:streampack-services:3.0.1'
24+
implementation 'io.github.thibaultbee.streampack:streampack-services:3.0.2'
2525
// For RTMP
26-
implementation 'io.github.thibaultbee.streampack:streampack-rtmp:3.0.1'
26+
implementation 'io.github.thibaultbee.streampack:streampack-rtmp:3.0.2'
2727
// For SRT
28-
implementation 'io.github.thibaultbee.streampack:streampack-srt:3.0.1'
28+
implementation 'io.github.thibaultbee.streampack:streampack-srt:3.0.2'
2929
}
3030
```
3131

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

256256
```groovy
257257
dependencies {
258-
implementation 'io.github.thibaultbee.streampack:streampack-services:3.0.1'
258+
implementation 'io.github.thibaultbee.streampack:streampack-services:3.0.2'
259259
}
260260
```
261261

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ allprojects {
1313
val versionName by extra { "3.0.2" }
1414

1515
group = "io.github.thibaultbee.streampack"
16-
version = "$versionName-SNAPSHOT"
16+
version = versionName
1717
}
1818

1919
subprojects {

0 commit comments

Comments
 (0)