Skip to content

Commit bbba9d3

Browse files
committed
Release 2.3.21
1 parent 048d2ae commit bbba9d3

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project
66
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.3.21] - 2022-12-19
9+
10+
* Migrate to Kotlin 1.7.21
11+
* Update internal dependencies
12+
* Fix FileNotFoundException due to not able to take extension (Special Thanks
13+
to [Catlandor](https://github.com/Catlandor))
14+
* Revert back from ACTION_GET_CONTENT to ACTION_OPEN_DOCUMENT until
15+
this [issue](https://github.com/Yalantis/uCrop/issues/857) is resolved.
16+
* Fix not getting image size correctly
17+
818
## [2.3.20] - 2022-09-28
919

1020
* Fix ktlint issue
@@ -270,7 +280,9 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
270280
* Handle Runtime Permission for Camera and Storage
271281
* Retrieve Image Result as File, File Path as String or Uri object
272282

273-
[Unreleased]: https://github.com/Drjacky/ImagePicker/compare/v2.3.20...HEAD
283+
[Unreleased]: https://github.com/Drjacky/ImagePicker/compare/v2.3.21...HEAD
284+
285+
[2.3.21]: https://github.com/Drjacky/ImagePicker/compare/v2.1.20...v2.3.21
274286

275287
[2.3.20]: https://github.com/Drjacky/ImagePicker/compare/v2.1.19...v2.3.20
276288

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
buildscript {
33
ext {
44
kotlin_version = '1.7.21'
5-
versionCode = 40
6-
versionName = '2.3.20'
5+
versionCode = 41
6+
versionName = '2.3.21'
77
}
88

99
repositories {

imagepicker/src/androidTest/java/com/github/drjacky/imagepicker/ExampleInstrumentedTest.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.github.drjacky.imagepicker
22

3-
import androidx.test.InstrumentationRegistry
3+
import androidx.test.platform.app.InstrumentationRegistry
44
import org.junit.Assert.assertEquals
55
import org.junit.Test
66

@@ -10,11 +10,13 @@ import org.junit.Test
1010
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
1111
*/
1212
class ExampleInstrumentedTest {
13+
1314
@Test
1415
fun useAppContext() {
1516
// Context of the app under test.
1617
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
1718

1819
assertEquals("com.github.drjacky.imagepicker.test", appContext.packageName)
1920
}
21+
2022
}

0 commit comments

Comments
 (0)