docs/ReleaseUpdateParameters.md in phrase-3.2.0 vs docs/ReleaseUpdateParameters.md in phrase-3.2.1
- old
+ new
@@ -4,18 +4,22 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**description** | **String** | Description of the release | [optional]
**platforms** | **Array<String>** | List of platforms the release should support. | [optional]
+**app_min_version** | **String** | Minimum version of the app that the release supports in semver format | [optional]
+**app_max_version** | **String** | Maximum version of the app that the release supports in semver format | [optional]
**branch** | **String** | Branch used for release | [optional]
## Code Sample
```ruby
require 'Phrase'
instance = Phrase::ReleaseUpdateParameters.new(description: My first Release,
platforms: ["android","ios"],
+ app_min_version: 2.5.0,
+ app_max_version: 3.0.0,
branch: my-feature-branch)
```