Skip to content

Commit

Permalink
fix: add app_min_version and app_max_version param to releases (#633)
Browse files Browse the repository at this point in the history
  • Loading branch information
theSoenke authored Jun 18, 2024
1 parent 5c68bb0 commit b384301
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
20 changes: 20 additions & 0 deletions doc/compiled.json
Original file line number Diff line number Diff line change
Expand Up @@ -9370,6 +9370,16 @@
"feature1"
]
},
"app_min_version": {
"description": "Minimum version of the app that the release supports in semver format",
"type": "string",
"example": "2.5.0"
},
"app_max_version": {
"description": "Maximum version of the app that the release supports in semver format",
"type": "string",
"example": "3.0.0"
},
"branch": {
"description": "Branch used for release",
"type": "string",
Expand Down Expand Up @@ -9536,6 +9546,16 @@
"ios"
]
},
"app_min_version": {
"description": "Minimum version of the app that the release supports in semver format",
"type": "string",
"example": "2.5.0"
},
"app_max_version": {
"description": "Maximum version of the app that the release supports in semver format",
"type": "string",
"example": "3.0.0"
},
"branch": {
"description": "Branch used for release",
"type": "string",
Expand Down
8 changes: 8 additions & 0 deletions paths/releases/create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,14 @@ requestBody:
example:
- android
- feature1
app_min_version:
description: Minimum version of the app that the release supports in semver format
type: string
example: 2.5.0
app_max_version:
description: Maximum version of the app that the release supports in semver format
type: string
example: 3.0.0
branch:
description: Branch used for release
type: string
Expand Down
8 changes: 8 additions & 0 deletions paths/releases/update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,14 @@ requestBody:
example:
- android
- ios
app_min_version:
description: Minimum version of the app that the release supports in semver format
type: string
example: 2.5.0
app_max_version:
description: Maximum version of the app that the release supports in semver format
type: string
example: 3.0.0
branch:
description: Branch used for release
type: string
Expand Down

0 comments on commit b384301

Please sign in to comment.