Skip to content

Commit 7bc8696

Browse files
authored
Drop unused incrementCounter enum type (#151)
1 parent decb1e8 commit 7bc8696

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 3.2.2 November 15 2024
4+
5+
- Updates the proguard rules for the library to prevent minification of essential classes.
6+
- Removes redundant code.
7+
38
## 3.2.1 October 29 2024
49

510
- Fix: Ensure we clear the preload cache on error responses.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ your project:
2323
#### Gradle
2424

2525
```groovy
26-
implementation "com.shopify:checkout-sheet-kit:3.2.1"
26+
implementation "com.shopify:checkout-sheet-kit:3.2.2"
2727
```
2828

2929
#### Maven
@@ -33,7 +33,7 @@ implementation "com.shopify:checkout-sheet-kit:3.2.1"
3333
<dependency>
3434
<groupId>com.shopify</groupId>
3535
<artifactId>checkout-sheet-kit</artifactId>
36-
<version>3.2.1</version>
36+
<version>3.2.2</version>
3737
</dependency>
3838
```
3939

lib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def resolveEnvVarValue(name, defaultValue) {
1414
return rawValue ? rawValue : defaultValue
1515
}
1616

17-
def versionName = resolveEnvVarValue("CHECKOUT_SHEET_KIT_VERSION", "3.2.1")
17+
def versionName = resolveEnvVarValue("CHECKOUT_SHEET_KIT_VERSION", "3.2.2")
1818

1919
ext {
2020
app_compat_version = '1.6.1'

lib/src/main/java/com/shopify/checkoutsheetkit/CheckoutBridge.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ internal data class InstrumentationPayload(
167167
@Suppress("EnumEntryName", "EnumNaming")
168168
@Serializable
169169
internal enum class InstrumentationType {
170-
histogram, incrementCounter
170+
histogram
171171
}
172172

173173
@Serializable

0 commit comments

Comments
 (0)