Skip to content

Commit

Permalink
Version Bump Java SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiechayes committed Oct 25, 2023
1 parent 0b62076 commit 071ea7f
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

|Language|Version|Package Manager|Documentation|Source|
|-|-|-|-|-|
|Java|2.2.0|[Maven Central](https://central.sonatype.com/artifact/com.konfigthis/splitit-web-java-sdk/2.2.0)|[Documentation](https://github.com/konfig-dev/splitit-web-sdks/tree/main/java/README.md)|[Source](https://github.com/konfig-dev/splitit-web-sdks/tree/main/java)|
|Java|2.2.1|[Maven Central](https://central.sonatype.com/artifact/com.konfigthis/splitit-web-java-sdk/2.2.1)|[Documentation](https://github.com/konfig-dev/splitit-web-sdks/tree/main/java/README.md)|[Source](https://github.com/konfig-dev/splitit-web-sdks/tree/main/java)|
|Python|2.6.0|[PyPI](https://pypi.org/project/splitit-web-python-sdk/2.6.0)|[Documentation](https://github.com/konfig-dev/splitit-web-sdks/tree/main/python/README.md)|[Source](https://github.com/konfig-dev/splitit-web-sdks/tree/main/python)|
|TypeScript|3.3.1|[npm](https://www.npmjs.com/package/splitit-web-typescript-sdk/v/3.3.1)|[Documentation](https://github.com/konfig-dev/splitit-web-sdks/tree/main/typescript/README.md)|[Source](https://github.com/konfig-dev/splitit-web-sdks/tree/main/typescript)|
|C#|2.1.0|[NuGet](https://nuget.org/packages/Splitit.Web.Net/2.1.0)|[Documentation](https://github.com/konfig-dev/splitit-web-sdks/tree/main/csharp/README.md)|[Source](https://github.com/konfig-dev/splitit-web-sdks/tree/main/csharp)|
Expand Down
2 changes: 1 addition & 1 deletion java/.konfig/generate-id.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
02c9cdc7-c6a8-4c8f-be41-e498908b2c33
0fb55136-34a5-4098-b84b-85f9afffa3c3
8 changes: 4 additions & 4 deletions java/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# splitit-web-java-sdk

[![Maven Central](https://img.shields.io/badge/Maven%20Central-v2.2.0-blue)](https://central.sonatype.com/artifact/com.konfigthis/splitit-web-java-sdk/2.2.0)
[![Maven Central](https://img.shields.io/badge/Maven%20Central-v2.2.1-blue)](https://central.sonatype.com/artifact/com.konfigthis/splitit-web-java-sdk/2.2.1)

Splitit's Web API

Expand Down Expand Up @@ -39,7 +39,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.konfigthis</groupId>
<artifactId>splitit-web-java-sdk</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -55,7 +55,7 @@ repositories {
}
dependencies {
implementation "com.konfigthis:splitit-web-java-sdk:2.2.0"
implementation "com.konfigthis:splitit-web-java-sdk:2.2.1"
}
```

Expand Down Expand Up @@ -92,7 +92,7 @@ mvn clean package

Then manually install the following JARs:

* `target/splitit-web-java-sdk-2.2.0.jar`
* `target/splitit-web-java-sdk-2.2.1.jar`
* `target/lib/*.jar`

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'java'
apply plugin: 'com.diffplug.spotless'

group = 'com.konfigthis'
version = '2.2.0'
version = '2.2.1'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion java/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "com.konfigthis",
name := "splitit-web-java-sdk",
version := "2.2.0",
version := "2.2.1",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>splitit-web-java-sdk</artifactId>
<packaging>jar</packaging>
<name>splitit-web-java-sdk</name>
<version>2.2.0</version>
<version>2.2.1</version>
<url>https://github.com/konfig-dev/splitit-web-sdks/tree/main/java</url>
<description>This library was generated by https://konfigthis.com</description>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ private void init() {
json = new JSON();

// Set default User-Agent.
setUserAgent("Konfig/2.2.0/java");
setUserAgent("Konfig/2.2.1/java");

authentications = new HashMap<String, Authentication>();
}
Expand Down
2 changes: 1 addition & 1 deletion konfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ generators:
userId: konfig-dev
repoId: splitit-web-sdks/tree/main/python
java:
version: 2.2.0
version: 2.2.1
groupId: com.konfigthis
packageName: splitit
artifactId: splitit-web-java-sdk
Expand Down

0 comments on commit 071ea7f

Please sign in to comment.