Skip to content

Commit e91b8af

Browse files
committed
Inital commit
1 parent 1c5789d commit e91b8af

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Add this dependency to your project's POM:
4040
<dependency>
4141
<groupId>com.clientapi</groupId>
4242
<artifactId>forgejo-client</artifactId>
43-
<version>1.0.3</version>
43+
<version>1.0.0</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
```
@@ -56,7 +56,7 @@ Add this dependency to your project's build file:
5656
}
5757
5858
dependencies {
59-
implementation "com.clientapi:forgejo-client:1.0.3"
59+
implementation "com.clientapi:forgejo-client:1.0.0"
6060
}
6161
```
6262

@@ -70,7 +70,7 @@ mvn clean package
7070

7171
Then manually install the following JARs:
7272

73-
* `target/forgejo-client-1.0.3.jar`
73+
* `target/forgejo-client-1.0.0.jar`
7474
* `target/lib/*.jar`
7575

7676
## Getting Started

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'java'
44
apply plugin: 'com.diffplug.spotless'
55

66
group = 'com.clientapi'
7-
version = '1.0.3'
7+
version = '1.0.0'
88

99
buildscript {
1010
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 := "com.clientapi",
44
name := "forgejo-client",
5-
version := "1.0.3",
5+
version := "1.0.0",
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>forgejo-client</artifactId>
66
<packaging>jar</packaging>
77
<name>forgejo-client</name>
8-
<version>1.0.3</version>
8+
<version>1.0.0</version>
99
<url>https://github.com/client-api/forgejo-java</url>
1010
<description>OpenAPI Java</description>
1111
<scm>

src/main/java/com/clientapi/forgejo/invoker/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-10-14T17:14:00.188014500+02:00[Europe/Budapest]")
1717
public class Configuration {
18-
public static final String VERSION = "1.0.3";
18+
public static final String VERSION = "1.0.0";
1919

2020
private static ApiClient defaultApiClient = new ApiClient();
2121

0 commit comments

Comments
 (0)