Skip to content

Commit

Permalink
feat(openapi): update version (#291)
Browse files Browse the repository at this point in the history
Co-authored-by: rbioteau <[email protected]>
  • Loading branch information
github-actions[bot] and rbioteau committed Sep 17, 2023
1 parent cbc38eb commit 59066d8
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ gradle/
.idea
*.iml

pom.xml.versionBackup
pom.xml.versionBackup
pom.xml.versionsBackup
2 changes: 1 addition & 1 deletion .openapi-generator/openapi.yaml-default.sha256
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2d8f884d44c39e62c062dc09c46778e3a7a22f08ad86e04273bdd678219bd79f
f8b3a3f443b8f33f1a6618f80a720eea1b28acd2057879fcbebe2c2eb501a318
2 changes: 1 addition & 1 deletion CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

:project-group-id: org.bonitasoft.web
:project-artifact-id: bonita-java-client
:project-version: 1.0.1-SNAPSHOT
:project-version: 1.0.1
:bonita-short-version: 7.13
:orga: bonitasoft
:uri-org: https://github.com/{orga}
Expand Down
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ endif::[]
// Vars
:project-group-id: org.bonitasoft.web
:project-artifact-id: bonita-java-client
:project-version: 1.0.1-SNAPSHOT
:project-version: 1.0.1
:bonita-short-version: 7.13
:orga: bonitasoft
:uri-org: https://github.com/{orga}
Expand Down
8 changes: 4 additions & 4 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ info:
name: GPL-v2.0
url: http://www.gnu.org/licenses/gpl-2.0.txt
title: Bonita API
version: 0.0.14
version: 0.0.15
x-logo:
url: images/bonitasoft-logo.svg
backgroundColor: '#19465f'
Expand Down Expand Up @@ -17561,11 +17561,11 @@ components:
type: object
HumanTaskUpdateRequest:
example:
assignedId: new_user_id
assigned_id: "1234"
state: new_state
properties:
assignedId:
description: assignedId of the HumanTask
assigned_id:
description: The id of the user to assign this Human task to
type: string
state:
description: state of the HumanTask
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.bonitasoft.web</groupId>
<artifactId>bonita-java-client</artifactId>
<version>1.0.1-SNAPSHOT</version>
<version>1.0.1</version>
<packaging>jar</packaging>
<name>bonita-java-client</name>
<description>Java client for Bonita REST API</description>
Expand Down Expand Up @@ -47,7 +47,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Bonita -->
<bonita.version>7.13.0</bonita.version>
<bonita-openapi.version>0.0.14</bonita-openapi.version>
<bonita-openapi.version>0.0.15</bonita-openapi.version>
<swagger-annotations.version>1.6.11</swagger-annotations.version>
<jakarta-annotation.version>2.1.1</jakarta-annotation.version>
<jsr305.version>3.0.2</jsr305.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class HumanTaskUpdateRequest implements Serializable {

private static final long serialVersionUID = 1L;

public static final String JSON_PROPERTY_ASSIGNED_ID = "assignedId";
public static final String JSON_PROPERTY_ASSIGNED_ID = "assigned_id";
private String assignedId;

public static final String JSON_PROPERTY_STATE = "state";
Expand All @@ -51,7 +51,7 @@ public HumanTaskUpdateRequest assignedId(String assignedId) {
}

/**
* assignedId of the HumanTask
* The id of the user to assign this Human task to
*
* @return assignedId
**/
Expand Down

0 comments on commit 59066d8

Please sign in to comment.