Skip to content

Commit

Permalink
Snap/2.3.3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins committed Mar 18, 2022
1 parent 7664877 commit 4e5b476
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Snap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 2.3.3.0.0
* Certified with Snap SDK 2.3.3.

## 2.3.2.0.1
* Support for null `Activity` on init.

Expand Down
4 changes: 2 additions & 2 deletions Snap/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ plugins {

private val versionMajor = 2
private val versionMinor = 3
private val versionPatch = 2
private val versionPatch = 3
private val versionBuild = 0
private val versionAdapterPatch = 1
private val versionAdapterPatch = 0

val libraryVersionName by extra("${versionMajor}.${versionMinor}.${versionPatch}.${versionBuild}.${versionAdapterPatch}")
val libraryVersionCode by extra((versionMajor * 100000000) + (versionMinor * 1000000) + (versionPatch * 10000) + (versionBuild * 100) + versionAdapterPatch)
Expand Down

0 comments on commit 4e5b476

Please sign in to comment.