Skip to content

Commit 655de41

Browse files
committed
Update version info for 2020-03-rc2
1 parent 3a7bf3e commit 655de41

File tree

5 files changed

+7
-13
lines changed

5 files changed

+7
-13
lines changed

README.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Add this dependency to your project's POM:
3939
<dependency>
4040
<groupId>org.omg.sysml</groupId>
4141
<artifactId>sysml-v2-api-client</artifactId>
42-
<version>2020-03</version>
42+
<version>2020-03-rc2</version>
4343
<scope>compile</scope>
4444
</dependency>
4545
```
@@ -49,7 +49,7 @@ Add this dependency to your project's POM:
4949
Add this dependency to your project's build file:
5050

5151
```groovy
52-
compile "org.omg.sysml:sysml-v2-api-client:2020-03"
52+
compile "org.omg.sysml:sysml-v2-api-client:2020-03-rc2"
5353
```
5454

5555
### Others
@@ -62,7 +62,7 @@ mvn clean package
6262

6363
Then manually install the following JARs:
6464

65-
* `target/sysml-v2-api-client-2020-03.jar`
65+
* `target/sysml-v2-api-client-2020-03-rc2.jar`
6666
* `target/lib/*.jar`
6767

6868
## Getting Started
@@ -122,20 +122,14 @@ Class | Method | HTTP request | Description
122122
## Documentation for Models
123123

124124
- [Commit](docs/Commit.md)
125-
- [CommitAllOf](docs/CommitAllOf.md)
126125
- [Element](docs/Element.md)
127-
- [ElementAllOf](docs/ElementAllOf.md)
128126
- [ElementIdentity](docs/ElementIdentity.md)
129-
- [ElementIdentityAllOf](docs/ElementIdentityAllOf.md)
130127
- [ElementVersion](docs/ElementVersion.md)
131-
- [ElementVersionAllOf](docs/ElementVersionAllOf.md)
132128
- [Error](docs/Error.md)
133129
- [Identified](docs/Identified.md)
134130
- [Project](docs/Project.md)
135-
- [ProjectAllOf](docs/ProjectAllOf.md)
136131
- [Record](docs/Record.md)
137132
- [Relationship](docs/Relationship.md)
138-
- [RelationshipAllOf](docs/RelationshipAllOf.md)
139133

140134

141135
## Documentation for Authorization

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'eclipse'
33
apply plugin: 'java'
44

55
group = 'org.omg.sysml'
6-
version = '2020-03'
6+
version = '2020-03-rc2'
77

88
buildscript {
99
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "org.omg.sysml",
44
name := "sysml-v2-api-client",
5-
version := "2020-03",
5+
version := "2020-03-rc2",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>sysml-v2-api-client</artifactId>
66
<packaging>jar</packaging>
77
<name>sysml-v2-api-client</name>
8-
<version>2020-03</version>
8+
<version>2020-03-rc2</version>
99
<url>https://github.com/openapitools/openapi-generator</url>
1010
<description>OpenAPI Java</description>
1111
<scm>

src/main/java/org/omg/sysml/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ private void init() {
9797
json = new JSON();
9898

9999
// Set default User-Agent.
100-
setUserAgent("OpenAPI-Generator/2020-03/java");
100+
setUserAgent("OpenAPI-Generator/2020-03-rc2/java");
101101

102102
authentications = new HashMap<String, Authentication>();
103103
}

0 commit comments

Comments
 (0)