Skip to content

Commit c970755

Browse files
release: 2.3.3
- Revert breaking changes Signed-off-by: Stefan Niedermann <[email protected]>
1 parent 51312dd commit c970755

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ Many Android clients for Nextcloud apps need similar mechanisms. To reduce maint
2424
Add this dependency to your `build.gradle`-file to include *all* modules at once:
2525

2626
```groovy
27-
implementation 'com.github.stefan-niedermann:nextcloud-commons:2.3.2'
27+
implementation 'com.github.stefan-niedermann:nextcloud-commons:2.3.3'
2828
```
2929

3030
## Modules
3131

3232
### exception
3333

3434
```groovy
35-
implementation 'com.github.stefan-niedermann.nextcloud-commons:exception:2.3.2'
35+
implementation 'com.github.stefan-niedermann.nextcloud-commons:exception:2.3.3'
3636
```
3737

3838
This is a util class which provides methods for generating a rich stacktrace from a throwable containing additional information like the used files app and OS versions.
@@ -95,7 +95,7 @@ Caused by: java.lang.NumberFormatException: For input string: "ASDF"
9595
### sso-glide
9696

9797
```groovy
98-
implementation 'com.github.stefan-niedermann.nextcloud-commons:sso-glide:2.3.2'
98+
implementation 'com.github.stefan-niedermann.nextcloud-commons:sso-glide:2.3.3'
9999
```
100100

101101
This is a Glide-integration module. If you are using [Single Sign On](https://github.com/nextcloud/Android-SingleSignOn) you may want to also fetch avatars or other images via Glide but with the SSO network stack to avoid problems with self-signed certificates, 2fa and so on.
@@ -168,7 +168,7 @@ Glide.with(context)
168168
### markdown
169169

170170
```groovy
171-
implementation('com.github.stefan-niedermann.nextcloud-commons:markdown:2.3.2') {
171+
implementation('com.github.stefan-niedermann.nextcloud-commons:markdown:2.3.3') {
172172
exclude group: 'org.jetbrains', module: 'annotations-java5'
173173
}
174174
```

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.version_code = 2003002
5-
ext.version_name = '2.3.2'
4+
ext.version_code = 2003003
5+
ext.version_name = '2.3.3'
66
ext.version_kotlin = '2.1.0'
77
ext.version_sso = '1.3.2'
88
ext.version_android_commons = '1.0.4'

0 commit comments

Comments
 (0)