Skip to content

Commit 357425f

Browse files
authored
Release 3.0.2 (#69)
Release `3.0.2`
2 parents 2894d3a + 16958e6 commit 357425f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+93
-36
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
All notable changes to this project will be documented in this file.
33

44
#### 3.x Releases
5-
- `3.0.x` Releases - [`3.0.0`](#300) | [`3.0.1`](#301)
5+
- `3.0.x` Releases - [`3.0.0`](#300) | [`3.0.1`](#301) | [`3.0.2`](#302)
66
- `3.0.0` Release Candidates - [`3.0.0-rc.1`](#300-rc1) | [`3.0.0-rc.2`](#300-rc2)
77

88
#### 2.x Releases
@@ -11,6 +11,17 @@ All notable changes to this project will be documented in this file.
1111
#### 1.x Releases
1212
- `1.0.x` Releases - [1.0.0](#100)
1313

14+
## [3.0.2](https://github.com/space-code/flare/releases/tag/3.0.2)
15+
Released on 2024-09-04.
16+
17+
## Added
18+
- Implement localizedPriceString for StoreProductDiscount & currencySymbol for StoreProduct
19+
- Added in Pull Request [#66](https://github.com/space-code/flare/pull/66).
20+
21+
## Fixed
22+
- Fix the code formatting
23+
- Fixed in Pull Request [#67](https://github.com/space-code/flare/pull/67)
24+
1425
## [3.0.1](https://github.com/space-code/flare/releases/tag/3.0.1)
1526
Released on 2024-08-09.
1627

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ GEM
4747
open4 (1.3.4)
4848
public_suffix (5.0.3)
4949
rchardet (1.8.0)
50-
rexml (3.3.3)
50+
rexml (3.3.6)
5151
strscan
5252
ruby2_keywords (0.0.5)
5353
sawyer (0.9.2)

Package.resolved

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

Sources/Flare/Classes/Extensions/Formatters/NumberFormatter+.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// Flare
3-
// Copyright © 2023 Space Code. All rights reserved.
3+
// Copyright © 2024 Space Code. All rights reserved.
44
//
55

66
import Foundation

Sources/Flare/Classes/Extensions/Locale/Locale+CurrencyCode.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// Flare
3-
// Copyright © 2023 Space Code. All rights reserved.
3+
// Copyright © 2024 Space Code. All rights reserved.
44
//
55

66
import Foundation

Sources/Flare/Classes/Extensions/ProductType+.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// Flare
3-
// Copyright © 2023 Space Code. All rights reserved.
3+
// Copyright © 2024 Space Code. All rights reserved.
44
//
55

66
import Foundation

Sources/Flare/Classes/Extensions/SKRequest+Identifier.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import StoreKit
77

88
private var requestIdKey: UInt = 0
99

10-
internal extension SKRequest {
10+
extension SKRequest {
1111
var id: String {
1212
get {
1313
objc_getAssociatedObject(self, &requestIdKey) as? String ?? ""

Sources/Flare/Classes/Helpers/AsyncSequence/AsyncSequence+Stream.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// Flare
3-
// Copyright © 2023 Space Code. All rights reserved.
3+
// Copyright © 2024 Space Code. All rights reserved.
44
//
55

66
import Foundation

Sources/Flare/Classes/Models/IAPError.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// Flare
3-
// Copyright © 2024 Space Code. All rights reserved.
3+
// Copyright © 2023 Space Code. All rights reserved.
44
//
55

66
import StoreKit

Sources/Flare/Classes/Models/Internal/Protocols/ISKProduct.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ protocol ISKProduct {
1616
/// The currency code for the product's price.
1717
var currencyCode: String? { get }
1818

19+
/// The currency Symbol for the product's price.
20+
var currencySymbol: String? { get }
21+
1922
/// The price of the product in decimal format.
2023
var price: Decimal { get }
2124

0 commit comments

Comments
 (0)