Skip to content

Commit

Permalink
Adding new ErrorCodeType and increasing version
Browse files Browse the repository at this point in the history
  • Loading branch information
howardrigberg committed Jun 14, 2022
1 parent f019a62 commit c0fb79f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Change Log
==========
Version 3.8.0 *(2022-06-14)*
----------------------------
- Added `ADD_TEAM_MEMBER_FORBIDDEN_QUOTA_EXCEEDED` to `ErrorCodeType`.
-
Version 3.7.0 *(2022-06-08)*
----------------------------
- Added `displayName`, `displayDescription` to `PermissionPolicy`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ object ApiConstants {

const val SSL_URL_PATTERN = "*.vimeo.com"

const val SDK_VERSION = "3.7.0"
const val SDK_VERSION = "3.8.0"

const val NONE = -1

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
org.gradle.parallel=true
org.gradle.daemon=true
org.gradle.jvmargs=-Xmx4096M
version=3.7.0
version=3.8.0

android.useAndroidX=true
android.enableJetifier=true
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,8 @@ enum class ErrorCodeType(override val value: String?) : StringValue {

ADD_VIDEO_TO_ALBUM_FORBIDDEN("3433"),

ADD_TEAM_MEMBER_FORBIDDEN_QUOTA_EXCEEDED("3448"),

UNEXPECTED_ALBUM_THUMBNAIL_EXCEPTION("4016"),

// Generic Auth Errors
Expand Down

0 comments on commit c0fb79f

Please sign in to comment.