Skip to content

Commit de817cd

Browse files
authored
release: 0.17.3 (#613)
1 parent 693604b commit de817cd

File tree

15 files changed

+27
-20
lines changed

15 files changed

+27
-20
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ body:
2424
attributes:
2525
label: 'Version'
2626
description: 'What library version are you using?'
27-
placeholder: '0.17.2'
27+
placeholder: '0.17.3'
2828
validations:
2929
required: true
3030
- type: textarea

.idea/kotlinc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
## [0.17.3] - 2025-06-02
11+
12+
### Fixed
13+
14+
- Avoid skipping potential `IceCandidate`'s
15+
1016
## [0.17.2] - 2025-03-13
1117

1218
### Added
@@ -407,7 +413,8 @@ path and will be removed at a later point.
407413

408414
- Initial release
409415

410-
[Unreleased]: https://github.com/pexip/pexip-android-sdk/compare/0.17.2...HEAD
416+
[Unreleased]: https://github.com/pexip/pexip-android-sdk/compare/0.17.3...HEAD
417+
[0.17.3]: https://github.com/pexip/pexip-android-sdk/releases/tag/0.17.3
411418
[0.17.2]: https://github.com/pexip/pexip-android-sdk/releases/tag/0.17.2
412419
[0.17.1]: https://github.com/pexip/pexip-android-sdk/releases/tag/0.17.1
413420
[0.17.0]: https://github.com/pexip/pexip-android-sdk/releases/tag/0.17.0

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ And add modules that you need:
2424
```kotlin
2525
dependencies {
2626
// A fluent wrapper for Infinity Client REST API
27-
implementation("com.pexip.sdk:sdk-api:0.17.2")
27+
implementation("com.pexip.sdk:sdk-api:0.17.3")
2828
// A set of tools for interacting with an Infinity conference
29-
implementation("com.pexip.sdk:sdk-conference:0.17.2")
29+
implementation("com.pexip.sdk:sdk-conference:0.17.3")
3030
// A set of tools for interacting with an Infinity registration
31-
implementation("com.pexip.sdk:sdk-registration:0.17.2")
31+
implementation("com.pexip.sdk:sdk-registration:0.17.3")
3232
// A `MediaConnection` implementation build on top of WebRTC
33-
implementation("com.pexip.sdk:sdk-media-webrtc:0.17.2")
33+
implementation("com.pexip.sdk:sdk-media-webrtc:0.17.3")
3434
// A composable that wraps SurfaceViewRenderer
35-
implementation("com.pexip.sdk:sdk-media-webrtc-compose:0.17.2")
35+
implementation("com.pexip.sdk:sdk-media-webrtc-compose:0.17.3")
3636
}
3737
```
3838

@@ -50,7 +50,7 @@ dependencyResolutionManagement {
5050
}
5151
versionCatalogs {
5252
register("pexipSdk") {
53-
from("com.pexip.sdk:sdk-catalog:0.17.2")
53+
from("com.pexip.sdk:sdk-catalog:0.17.3")
5454
}
5555
}
5656
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group=com.pexip.sdk
2-
version=0.17.3-SNAPSHOT
2+
version=0.17.3
33
# Project-wide Gradle settings.
44
# IDE (e.g. Android Studio) users:
55
# Gradle settings configured through the IDE *will override*

sdk-api/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ A set of common classes and interfaces to build APIs.
88

99
```kotlin
1010
dependencies {
11-
implementation("com.pexip.sdk:sdk-api:0.17.2")
11+
implementation("com.pexip.sdk:sdk-api:0.17.3")
1212
}
1313
```

sdk-catalog/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencyResolutionManagement {
1616
}
1717
versionCatalogs {
1818
register("pexipSdk") {
19-
from("com.pexip.sdk:sdk-catalog:0.17.2")
19+
from("com.pexip.sdk:sdk-catalog:0.17.3")
2020
}
2121
}
2222
}

sdk-conference/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ A set of tools to interact with conferences.
88

99
```kotlin
1010
dependencies {
11-
implementation("com.pexip.sdk:sdk-conference:0.17.2")
11+
implementation("com.pexip.sdk:sdk-conference:0.17.3")
1212
}
1313
```

sdk-core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ Pexip SDK core
88

99
```kotlin
1010
dependencies {
11-
implementation("com.pexip.sdk:sdk-core:0.17.2")
11+
implementation("com.pexip.sdk:sdk-core:0.17.3")
1212
}
1313
```

sdk-infinity-test/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ Pexip Infinity SDK test utilities
88

99
```kotlin
1010
dependencies {
11-
implementation("com.pexip.sdk:sdk-infinity-test:0.17.2")
11+
implementation("com.pexip.sdk:sdk-infinity-test:0.17.3")
1212
}
1313
```

0 commit comments

Comments
 (0)