Skip to content

Commit

Permalink
Release 4.0.1
Browse files Browse the repository at this point in the history
Release 4.0.1
  • Loading branch information
SpertsyanKM authored Jan 9, 2023
2 parents 0b9f39c + 6606304 commit e12b988
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/manual_minor_prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
ref: develop

- name: Minor
run: |
fastlane minor
fastlane minor
6 changes: 5 additions & 1 deletion .github/workflows/manual_patch_prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
ref: develop

- name: Patch
run: |
fastlane patch
fastlane patch
4 changes: 2 additions & 2 deletions Editor/QonversionDependencies.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<dependencies>
<androidPackages>
<androidPackage spec="io.qonversion.sandwich:sandwich:1.0.0" />
<androidPackage spec="io.qonversion.sandwich:sandwich:1.0.1" />
<androidPackage spec="com.fasterxml.jackson.core:jackson-databind:2.11.1" />
<androidPackage spec="org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.61" />
</androidPackages>
<iosPods>
<iosPod name="QonversionSandwich" version="1.0.0" />
<iosPod name="QonversionSandwich" version="1.0.1" />
</iosPods>
</dependencies>
2 changes: 1 addition & 1 deletion Runtime/Scripts/Internal/QonversionInternal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ internal class QonversionInternal : MonoBehaviour, IQonversion
private const string OnEligibilitiesMethodName = "OnEligibilities";
private const string OnUserInfoMethodName = "OnUserInfo";

private const string SdkVersion = "4.0.0";
private const string SdkVersion = "4.0.1";
private const string SdkSource = "unity";

private IQonversionWrapper _nativeWrapperInstance;
Expand Down
4 changes: 4 additions & 0 deletions Runtime/iOS/Plugins/Common/UtilityBridge.m
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ + (void)handleErrorResponse:(SandwichError *)error toMethod:(NSString *)methodNa
}

+ (const char *)jsonStringFromObject:(NSObject *)objectToConvert{
if (objectToConvert == nil) {
return nil;
}

NSError *error = nil;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:objectToConvert options:0 error:&error];

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.qonversion.unity",
"displayName": "Qonversion",
"version": "4.0.0",
"version": "4.0.1",
"unity": "2018.3",
"description": "Empower your mobile app marketing and product decisions with precise subscription data.",
"author": {
Expand Down

0 comments on commit e12b988

Please sign in to comment.