Skip to content

Commit

Permalink
Release 4.0.0 (#188)
Browse files Browse the repository at this point in the history
- Fixed snake_case and camelCase serialization inconsistency in `StoreProduct` (#187)
- Updated `purchases-ios` to [4.9.1](https://github.com/RevenueCat/purchases-ios/releases/tag/4.9.1)
  • Loading branch information
NachoSoto authored Aug 2, 2022
1 parent 1a95b94 commit 6beda22
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.0
4.0.0
8 changes: 7 additions & 1 deletion CHANGELOG.latest.md
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
- Update purchases-android to 5.3.0 (https://github.com/RevenueCat/purchases-android/releases/tag/5.3.0)
- Fixed snake_case and camelCase serialization inconsistency in `StoreProduct` (https://github.com/RevenueCat/purchases-hybrid-common/pull/187):
- Renamed `price_string` to `priceString`
- Renamed `currency_code` to `currencyCode`
- Renamed `intro_price` to `introPrice`
- Renamed `product_category` to `productCategory`
- Renamed `product_type` to `productType`
- Updated `purchases-ios` to [4.9.1](https://github.com/RevenueCat/purchases-ios/releases/tag/4.9.1)
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 4.0.0

- Fixed snake_case and camelCase serialization inconsistency in `StoreProduct` (https://github.com/RevenueCat/purchases-hybrid-common/pull/187):
- Renamed `price_string` to `priceString`
- Renamed `currency_code` to `currencyCode`
- Renamed `intro_price` to `introPrice`
- Renamed `product_category` to `productCategory`
- Renamed `product_type` to `productType`
- Updated `purchases-ios` to [4.9.1](https://github.com/RevenueCat/purchases-ios/releases/tag/4.9.1)

## 3.3.0

- Update purchases-android to 5.3.0 (https://github.com/RevenueCat/purchases-android/releases/tag/5.3.0)
Expand Down
4 changes: 2 additions & 2 deletions PurchasesHybridCommon.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "PurchasesHybridCommon"
s.version = "3.3.0"
s.version = "4.0.0"
s.summary = "Common files for hybrid SDKs for RevenueCat's Subscription and in-app-purchase backend service."

s.description = <<-DESC
Expand All @@ -15,7 +15,7 @@ Pod::Spec.new do |s|

s.framework = 'StoreKit'

s.dependency 'RevenueCat', '4.9.0'
s.dependency 'RevenueCat', '4.9.1'
s.swift_version = '5.0'

s.ios.deployment_target = '11.0'
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ android {
minSdkVersion 14
targetSdkVersion 32
versionCode 1
versionName "3.3.0"
versionName "4.0.0"

consumerProguardFiles 'consumer-rules.pro'
}
Expand Down
2 changes: 1 addition & 1 deletion android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ kotlin.code.style=official

# Maven
GROUP=com.revenuecat.purchases
VERSION_NAME=3.3.0
VERSION_NAME=4.0.0
POM_NAME=purchases-hybrid-common
POM_PACKAGING=aar
POM_ARTIFACT_ID=purchases-hybrid-common
Expand Down
2 changes: 1 addition & 1 deletion ios/PurchasesHybridCommon/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>3.3.0</string>
<string>4.0.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
</dict>
Expand Down
4 changes: 2 additions & 2 deletions ios/PurchasesHybridCommon/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ target 'PurchasesHybridCommon' do
use_frameworks!

# Pods for PurchasesHybridCommon
pod 'RevenueCat', '4.9.0'
pod 'RevenueCat', '4.9.1'

target 'PurchasesHybridCommonTests' do
# Pods for testing
Expand All @@ -28,5 +28,5 @@ target 'ObjCAPITester' do
platform :ios, '11.0'
use_frameworks!

pod 'RevenueCat', '4.9.0'
pod 'RevenueCat', '4.9.1'
end
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>3.3.0</string>
<string>4.0.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down

0 comments on commit 6beda22

Please sign in to comment.