Skip to content

Commit

Permalink
Bump version to 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fibelatti committed Sep 26, 2023
1 parent 33b5879 commit d761261
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@ object AppInfo {

private const val versionMajor = 2
private const val versionMinor = 2
private const val versionPatch = 0
private const val versionPatch = 1
private const val versionBuild = 0

val versionCode: Int = (versionMajor * 1_000_000 + versionMinor * 10_000 + versionPatch * 100 + versionBuild)
.also { println("versionCode: $it") }

@Suppress("KotlinConstantConditions")
val versionName: String = StringBuilder("$versionMajor.$versionMinor")
.apply { if (versionPatch != 0) append(".$versionPatch") }
.toString()
Expand Down
9 changes: 9 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/2020100.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
- *New* Saved filters: save your most used filters to quickly access them at any time
- *New* Quick save: a new share option to skip the bookmark editor when you're in a hurry

- Small adjustments to the UI: reviewed iconography and colors
- Fix navigation bugs when using the side panel

Feedback and suggestions are always welcome, visit the project page to contribute!

Thanks for using Pinkt!

0 comments on commit d761261

Please sign in to comment.