Skip to content

Commit 96197e3

Browse files
committed
Publish v2.0.3
1 parent e3861a1 commit 96197e3

File tree

6 files changed

+22
-10
lines changed

6 files changed

+22
-10
lines changed

CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,19 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

66
## Unreleased
7-
- Add ability to override iOS audio session category
7+
8+
9+
## [2.0.3] - 2020-03-23
10+
### Added
811
- Add Player option mixWithOthers
12+
- iOS: Add ability to override audio session category
13+
14+
### Changed
15+
- Android: Remove unneeded references to Android support library, improving Android X support
16+
17+
### Fixed
18+
- iOS: Made linking to RCTBridgeModule.h more robust
19+
- iOS: Fixed podspec not using right Git tag string
920

1021
## [2.0.2] - 2019-07-09
1122
### Added
@@ -107,7 +118,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
107118
Initial release.
108119
109120
110-
[2.0.2]: https://github.com/react-native-community/react-native-audio-toolkit/compare/caa399431afdcb70a2aa73fe436cdf00e3ea92d0...HEAD
121+
[2.0.3]: https://github.com/react-native-community/react-native-audio-toolkit/compare/f51bac3ee751e72f916abb657c2f594e870a36ac...HEAD
122+
[2.0.2]: https://github.com/react-native-community/react-native-audio-toolkit/compare/caa399431afdcb70a2aa73fe436cdf00e3ea92d0...f51bac3ee751e72f916abb657c2f594e870a36ac
111123
[2.0.1]: https://github.com/react-native-community/react-native-audio-toolkit/commit/caa399431afdcb70a2aa73fe436cdf00e3ea92d0
112124
[2.0.0]: https://github.com/react-native-community/react-native-audio-toolkit/compare/dc2f04a35f388016aa294bcc80e7f553d1988037...ed89597b2e319c9073f2156c81c48c7ff8a7993f
113125
[1.0.6]: https://github.com/react-native-community/react-native-audio-toolkit/compare/4746870166fe4beb9fbf075d45fab952de4558d6...dc2f04a35f388016aa294bcc80e7f553d1988037

ExampleApp/android/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ buildscript {
66
minSdkVersion = 19
77
compileSdkVersion = 28
88
targetSdkVersion = 28
9+
supportLibVersion = "28.0.0"
910
}
1011
repositories {
1112
google()

ExampleApp/package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ExampleApp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"start:ios": "npm run rn-cli -- run-ios"
99
},
1010
"dependencies": {
11-
"@react-native-community/audio-toolkit": "^2.0.2",
11+
"@react-native-community/audio-toolkit": "^2.0.3",
1212
"@react-native-community/slider": "^1.1.4",
1313
"react": "16.8.3",
1414
"react-native": "0.59.10"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-community/audio-toolkit",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "Cross-platform audio library for React Native",
55
"main": "index.js",
66
"types": "typings/index.d.ts",

typings/index.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ interface PlayerOptions {
5050
* iOS will always pause in this case.
5151
* (Default: false)
5252
*/
53-
5453
continuesToPlayInBackground?: boolean;
5554

5655
/**

0 commit comments

Comments
 (0)