docs/ReleaseCreateParameters.md in phrase-2.3.1 vs docs/ReleaseCreateParameters.md in phrase-2.4.0

- old
+ new

@@ -4,18 +4,20 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **description** | **String** | Description of the release | [optional] **platforms** | **Array<String>** | List of platforms the release should support. | [optional] +**locale_ids** | **Array<String>** | List of locale ids that will be included in the release. If empty, distribution locales will be used | [optional] **branch** | **String** | Branch used for release | [optional] ## Code Sample ```ruby require 'Phrase' instance = Phrase::ReleaseCreateParameters.new(description: My first Release, platforms: ["android","ios"], + locale_ids: ["abcd1234cdef1234abcd1234cdef1234","fff565db236400772368235db2c6117e"], branch: my-feature-branch) ```