Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion client/CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
4.4.0 ()
4.4.0 (Oct 29, 2021)
- Added support for Redis to keep consistency across multiple SDK instances.

4.3.0 (Oct 19, 2021)
- Added support for the SDK to run with a custom implementation of it's internal storage modules, enabling customers to implement this caching in any storage technology of choice and connect it to the SDK instance itself which will use it instead of the in-memory structures.
Expand Down
4 changes: 2 additions & 2 deletions client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
<parent>
<groupId>io.split.client</groupId>
<artifactId>java-client-parent</artifactId>
<version>4.4.0-alpha</version>
<version>4.4.0-beta</version>
</parent>
<artifactId>java-client</artifactId>
<packaging>jar</packaging>
<name>Java Client</name>
<description>Java SDK for Split</description>

<properties>
<pluggable.storage>1.0.0-alpha</pluggable.storage>
<pluggable.storage>1.0.0-beta</pluggable.storage>
</properties>

<build>
Expand Down
4 changes: 2 additions & 2 deletions pluggable-storage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
<parent>
<artifactId>java-client-parent</artifactId>
<groupId>io.split.client</groupId>
<version>4.4.0-alpha</version>
<version>4.4.0-beta</version>
</parent>

<version>1.0.0-alpha</version>
<version>1.0.0-beta</version>
<artifactId>pluggable-storage</artifactId>
<packaging>jar</packaging>
<name>Package for Pluggable Storage</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.split.client</groupId>
<artifactId>java-client-parent</artifactId>
<version>4.4.0-alpha</version>
<version>4.4.0-beta</version>
<dependencyManagement>
<dependencies>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions redis-wrapper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<parent>
<artifactId>java-client-parent</artifactId>
<groupId>io.split.client</groupId>
<version>4.4.0-alpha</version>
<version>4.4.0-beta</version>
</parent>

<artifactId>redis-wrapper</artifactId>
<version>1.0.0-alpha</version>
<version>1.0.0-beta</version>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<pluggable.storage>1.0.0-alpha</pluggable.storage>
<pluggable.storage>1.0.0-beta</pluggable.storage>
</properties>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion testing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.split.client</groupId>
<artifactId>java-client-parent</artifactId>
<version>4.4.0-alpha</version>
<version>4.4.0-beta</version>
</parent>

<artifactId>java-client-testing</artifactId>
Expand Down