Skip to content

Commit

Permalink
Merge pull request #569 from vimeo/MPS-3345-Quota-Period-Types
Browse files Browse the repository at this point in the history
Updated UploadQuotaPeriodType to match new values.
  • Loading branch information
howardrigberg committed Jul 7, 2022
2 parents aa5862d + 5bb58fa commit cab96e4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 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.11.0 *(2022-07-07)*
----------------------------
- Updated `UploadQuotaPeriodType` to match new values.

Version 3.10.0 *(2022-06-27)*
----------------------------
- Added `customMessage` parameter to `VimeoApiClient.addUserToTeam()`.
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.10.0"
const val SDK_VERSION = "3.11.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.10.0
version=3.11.0

android.useAndroidX=true
android.enableJetifier=true
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ enum class UploadQuotaPeriodType(override val value: String?) : StringValue {
/**
* The quota renews weekly.
*/
WEEKLY("weekly"),
WEEKLY("week"),

/**
* The quota renews monthly.
*/
MONTHLY("monthly"),
MONTHLY("month"),

/**
* The quota renews yearly.
*/
YEARLY("yearly"),
YEARLY("year"),

/**
* The user doesn't have a periodic quota.
Expand Down

0 comments on commit cab96e4

Please sign in to comment.