Skip to content

Commit

Permalink
Publish v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sbeca committed Jun 26, 2019
1 parent ed89597 commit caa3994
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased

## [2.0.1] - 2019-06-26
### Fixed
- Fixed iOS linking errors caused by change of folder structure

## [2.0.0] - 2019-06-26
### BREAKING CHANGE
### BREAKING CHANGES
- Android: Change namespace from `com.futurice.rctaudiotoolkit` to `com.reactnativecommunity.rctaudiotoolkit` which requires users to re-link library. This can be done manually or automatically during the update process via:
```
react-native unlink react-native-audio-toolkit
Expand Down Expand Up @@ -92,7 +95,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
Initial release.


[2.0.0]: https://github.com/react-native-community/react-native-audio-toolkit/compare/dc2f04a35f388016aa294bcc80e7f553d1988037...HEAD
[2.0.1]: https://github.com/react-native-community/react-native-audio-toolkit/compare/ed89597b2e319c9073f2156c81c48c7ff8a7993f...HEAD
[2.0.0]: https://github.com/react-native-community/react-native-audio-toolkit/compare/dc2f04a35f388016aa294bcc80e7f553d1988037...ed89597b2e319c9073f2156c81c48c7ff8a7993f
[1.0.6]: https://github.com/react-native-community/react-native-audio-toolkit/compare/4746870166fe4beb9fbf075d45fab952de4558d6...dc2f04a35f388016aa294bcc80e7f553d1988037
[1.0.5]: https://github.com/react-native-community/react-native-audio-toolkit/compare/6a2641ebc6b6177fa29ac81b694ea2dd64d5a2cd...4746870166fe4beb9fbf075d45fab952de4558d6
[1.0.4]: https://github.com/react-native-community/react-native-audio-toolkit/compare/eba2326941e9b2f4405e832ce5af0a85bf6817ef...6a2641ebc6b6177fa29ac81b694ea2dd64d5a2cd
Expand Down
6 changes: 3 additions & 3 deletions ExampleApp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ExampleApp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start:ios": "npm run rn-cli -- run-ios"
},
"dependencies": {
"@react-native-community/audio-toolkit": "^2.0.0",
"@react-native-community/audio-toolkit": "^2.0.1",
"@react-native-community/slider": "^1.1.2",
"react": "16.8.3",
"react-native": "0.59.8"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
"$(SRCROOT)/../**",
"$(SRCROOT)/../../react-native/React/**",
"$(SRCROOT)/../../node_modules/react-native/React/**",
"$(SRCROOT)/../../../../node_modules/react-native/React/**",
"$(SRCROOT)/../../../../../node_modules/react-native/React/**",
);
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -261,7 +261,7 @@
"$(SRCROOT)/../**",
"$(SRCROOT)/../../react-native/React/**",
"$(SRCROOT)/../../node_modules/react-native/React/**",
"$(SRCROOT)/../../../../node_modules/react-native/React/**",
"$(SRCROOT)/../../../../../node_modules/react-native/React/**",
);
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-native-community/audio-toolkit",
"version": "2.0.0",
"version": "2.0.1",
"description": "Cross-platform audio library for React Native",
"main": "index.js",
"types": "typings/index.d.ts",
Expand Down

0 comments on commit caa3994

Please sign in to comment.