Skip to content

Commit

Permalink
Drop unused incrementCounter enum type (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
markmur authored Nov 15, 2024
1 parent decb1e8 commit 7bc8696
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 3.2.2 November 15 2024

- Updates the proguard rules for the library to prevent minification of essential classes.
- Removes redundant code.

## 3.2.1 October 29 2024

- Fix: Ensure we clear the preload cache on error responses.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ your project:
#### Gradle

```groovy
implementation "com.shopify:checkout-sheet-kit:3.2.1"
implementation "com.shopify:checkout-sheet-kit:3.2.2"
```

#### Maven
Expand All @@ -33,7 +33,7 @@ implementation "com.shopify:checkout-sheet-kit:3.2.1"
<dependency>
<groupId>com.shopify</groupId>
<artifactId>checkout-sheet-kit</artifactId>
<version>3.2.1</version>
<version>3.2.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def resolveEnvVarValue(name, defaultValue) {
return rawValue ? rawValue : defaultValue
}

def versionName = resolveEnvVarValue("CHECKOUT_SHEET_KIT_VERSION", "3.2.1")
def versionName = resolveEnvVarValue("CHECKOUT_SHEET_KIT_VERSION", "3.2.2")

ext {
app_compat_version = '1.6.1'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ internal data class InstrumentationPayload(
@Suppress("EnumEntryName", "EnumNaming")
@Serializable
internal enum class InstrumentationType {
histogram, incrementCounter
histogram
}

@Serializable
Expand Down

0 comments on commit 7bc8696

Please sign in to comment.