Skip to content

Commit 1e70ed1

Browse files
authored
Release 8.0.1 (#290)
* Release 8.0.1 * fix podfile.lock
1 parent c02e660 commit 1e70ed1

File tree

17 files changed

+47
-40
lines changed

17 files changed

+47
-40
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# React Native Module Changelog
22

3+
## Version 8.0.1 - July 16, 2020
4+
Patch release to fix package generation, common gradle file references and the example app.
5+
6+
- Fixed package generation
7+
- Fixed common gradle file references
8+
- Fixed example app
9+
310
## Version 8.0.0 - July 8, 2020
411
Major release rewritten in TypeScript and adding separate modules for location,
512
HMS and Accengage features

example/ios/Podfile.lock

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
PODS:
2-
- Airship (13.5.0):
3-
- Airship/Automation (= 13.5.0)
4-
- Airship/Core (= 13.5.0)
5-
- Airship/ExtendedActions (= 13.5.0)
6-
- Airship/MessageCenter (= 13.5.0)
7-
- Airship/Accengage (13.5.0):
2+
- Airship (13.5.1):
3+
- Airship/Automation (= 13.5.1)
4+
- Airship/Core (= 13.5.1)
5+
- Airship/ExtendedActions (= 13.5.1)
6+
- Airship/MessageCenter (= 13.5.1)
7+
- Airship/Accengage (13.5.1):
88
- Airship/Core
9-
- Airship/Automation (13.5.0):
9+
- Airship/Automation (13.5.1):
1010
- Airship/Core
11-
- Airship/Core (13.5.0)
12-
- Airship/ExtendedActions (13.5.0):
11+
- Airship/Core (13.5.1)
12+
- Airship/ExtendedActions (13.5.1):
1313
- Airship/Core
14-
- Airship/Location (13.5.0):
14+
- Airship/Location (13.5.1):
1515
- Airship/Core
16-
- Airship/MessageCenter (13.5.0):
16+
- Airship/MessageCenter (13.5.1):
1717
- Airship/Core
1818
- AirshipExtensions/NotificationService (13.5.1)
1919
- boost-for-react-native (1.63.0)
@@ -242,16 +242,16 @@ PODS:
242242
- React
243243
- RNReanimated (1.9.0):
244244
- React
245-
- RNScreens (2.9.0):
245+
- RNScreens (2.8.0):
246246
- React
247-
- urbanairship-accengage-react-native (8.0.0):
248-
- Airship/Accengage (= 13.5.0)
247+
- urbanairship-accengage-react-native (8.0.1):
248+
- Airship/Accengage (= 13.5.1)
249249
- React
250-
- urbanairship-location-react-native (8.0.0):
251-
- Airship/Location (= 13.5.0)
250+
- urbanairship-location-react-native (8.0.1):
251+
- Airship/Location (= 13.5.1)
252252
- React
253-
- urbanairship-react-native (8.0.0):
254-
- Airship (= 13.5.0)
253+
- urbanairship-react-native (8.0.1):
254+
- Airship (= 13.5.1)
255255
- React
256256
- Yoga (1.14.0)
257257

@@ -368,7 +368,7 @@ EXTERNAL SOURCES:
368368
:path: "../../node_modules/react-native/ReactCommon/yoga"
369369

370370
SPEC CHECKSUMS:
371-
Airship: 7463331b043f02b38c1da948e30d34212aa6bdbb
371+
Airship: 644bb975feaf98f439462350fcbc2c6b68a86bf0
372372
AirshipExtensions: c55fa7b9d471a678d1704e6f9fe29f6e7d9fe1a7
373373
boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
374374
DoubleConversion: 5805e889d232975c086db112ece9ed034df7a0b2
@@ -399,10 +399,10 @@ SPEC CHECKSUMS:
399399
RNCMaskedView: 5a8ec07677aa885546a0d98da336457e2bea557f
400400
RNGestureHandler: 8f09cd560f8d533eb36da5a6c5a843af9f056b38
401401
RNReanimated: b5ccb50650ba06f6e749c7c329a1bc3ae0c88b43
402-
RNScreens: c526239bbe0e957b988dacc8d75ac94ec9cb19da
403-
urbanairship-accengage-react-native: 52d3043d929b3e72b104a905716731d3d134e158
404-
urbanairship-location-react-native: 01624acbdda98d168e232617d2048f7ef32ebc6c
405-
urbanairship-react-native: 3d81b612bd5251931f57eb57ece32ffa0e1c58a3
402+
RNScreens: 62211832af51e0aebcf6e8c36bcf7dd65592f244
403+
urbanairship-accengage-react-native: ad5fb9a8b6946673621c7e903782103717afed26
404+
urbanairship-location-react-native: fe50c8a3fedd9d8c9b31e92b732b2554dd21602f
405+
urbanairship-react-native: c34e32972016008653970b9fcca0de852cfb9bfa
406406
Yoga: f2a7cd4280bfe2cca5a7aed98ba0eb3d1310f18b
407407

408408
PODFILE CHECKSUM: 3b1e496b3d7771c6b9bf243d65fe1c555613c117

urbanairship-accengage-react-native/android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'com.android.library'
33
import groovy.json.JsonSlurper
44

55
ext {
6-
airshipVersion = "13.2.1"
6+
airshipVersion = "13.3.0"
77
}
88

99
android {

urbanairship-accengage-react-native/ios/AirshipAccengageReactModuleVersion.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#import "AirshipAccengageReactModuleVersion.h"
44

5-
NSString *const moduleVersionString = @"7.0.0";
5+
NSString *const moduleVersionString = @"8.0.1";
66

77
@implementation AirshipAccengageReactModuleVersion
88

urbanairship-accengage-react-native/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "urbanairship-accengage-react-native",
3-
"version": "8.0.0",
3+
"version": "8.0.1",
44
"description": "Airship accengage module for React Native apps.",
55
"author": "Airship",
66
"homepage": "https://github.com/urbanairship/react-native-module",

urbanairship-accengage-react-native/urbanairship-accengage-react-native.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
1616
s.requires_arc = true
1717

1818
s.dependency "React"
19-
s.dependency "Airship/Accengage", "13.5.0"
19+
s.dependency "Airship/Accengage", "13.5.1"
2020

2121
end
2222

urbanairship-hms-react-native/android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'com.android.library'
33
import groovy.json.JsonSlurper
44

55
ext {
6-
airshipVersion = "13.2.1"
6+
airshipVersion = "13.3.0"
77
}
88

99
android {

urbanairship-hms-react-native/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "urbanairship-hms-react-native",
3-
"version": "8.0.0",
3+
"version": "8.0.1",
44
"description": "Airship HMS module for React Native apps.",
55
"author": "Airship",
66
"homepage": "https://github.com/urbanairship/react-native-module",

urbanairship-location-react-native/android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'com.android.library'
33
import groovy.json.JsonSlurper
44

55
ext {
6-
airshipVersion = "13.2.1"
6+
airshipVersion = "13.3.0"
77
}
88

99
android {

urbanairship-location-react-native/ios/AirshipLocationReactModuleVersion.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
#import "AirshipLocationReactModuleVersion.h"
44

5-
NSString *const moduleVersionString = @"7.0.0";
5+
NSString *const airshipLocationModuleVersionString = @"8.0.1";
66

77
@implementation AirshipLocationReactModuleVersion
88

99
+ (nonnull NSString *)get {
10-
return moduleVersionString;
10+
return airshipLocationModuleVersionString;
1111
}
1212

1313
@end

urbanairship-location-react-native/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "urbanairship-location-react-native",
3-
"version": "8.0.0",
3+
"version": "8.0.1",
44
"description": "Airship location module for React Native apps.",
55
"author": "Airship",
66
"homepage": "https://github.com/urbanairship/react-native-module",

urbanairship-location-react-native/urbanairship-location-react-native.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
1616
s.requires_arc = true
1717

1818
s.dependency "React"
19-
s.dependency "Airship/Location", "13.5.0"
19+
s.dependency "Airship/Location", "13.5.1"
2020

2121
end
2222

urbanairship-react-native/android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'com.android.library'
33
import groovy.json.JsonSlurper
44

55
ext {
6-
airshipVersion = "13.2.1"
6+
airshipVersion = "13.3.0"
77
}
88

99
android {

urbanairship-react-native/ios/UARCTModule/UARCTModuleVersion.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
@implementation UARCTModuleVersion
66

7-
NSString *const moduleVersionString = @"8.0.0";
7+
NSString *const airshipModuleVersionString = @"8.0.1";
88

99
+ (nonnull NSString *)get {
10-
return moduleVersionString;
10+
return airshipModuleVersionString;
1111
}
1212

1313
@end

urbanairship-react-native/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "urbanairship-react-native",
3-
"version": "8.0.0",
3+
"version": "8.0.1",
44
"description": "Airship plugin for React Native apps.",
55
"author": "Airship",
66
"homepage": "https://github.com/urbanairship/react-native-module",

urbanairship-react-native/scripts/sync_version.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ if [ -z "$1" ]
1111
fi
1212

1313
# Update UARCTModuleVersion.m for current install
14-
sed -i '' "s/\(moduleVersionString *= *@\)\".*\"/\1\"$VERSION\"/g" ios/UARCTModule/UARCTModuleVersion.m
14+
sed -i '' "s/\(airshipModuleVersionString *= *@\)\".*\"/\1\"$VERSION\"/g" ios/UARCTModule/UARCTModuleVersion.m

urbanairship-react-native/urbanairship-react-native.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ require "json"
1414
s.source = { :git => "https://github.com/urbanairship/react-native-module.git", :tag => "{s.version}" }
1515
s.source_files = "ios/**/*.{h,m}"
1616
s.dependency "React"
17-
s.dependency "Airship", "13.5.0"
17+
s.dependency "Airship", "13.5.1"
1818

1919
end

0 commit comments

Comments
 (0)