From 486686dd525aaf65b2fe17dd82ce1223b77efc24 Mon Sep 17 00:00:00 2001 From: slisaasquatch Date: Fri, 5 Jan 2024 10:16:01 -0800 Subject: [PATCH] Release version bump --- README.md | 8 ++++---- build.gradle | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 990aef2..e4896bd 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ public class Example { final HttpReactiveClient reactiveClient = HttpReactiveClients.create(asyncClient); // Execute a simple in-memory request Single.fromPublisher( - reactiveClient.execute(SimpleRequestBuilder.get("https://www.example.com").build())) + reactiveClient.execute(SimpleRequestBuilder.get("https://www.example.com").build())) .doOnSuccess(response -> { // Get the response status and body in memory System.out.println(response.getCode()); @@ -44,7 +44,7 @@ public class Example { // Execute a streaming request // In this case, the request is a simple in-memory request without a request body Single.fromPublisher(reactiveClient.streamingExecute( - SimpleRequestBuilder.get("https://www.example.com").build())) + SimpleRequestBuilder.get("https://www.example.com").build())) .flatMapPublisher(message -> { // Get the status before subscribing to the streaming body System.out.println(message.getHead().getCode()); @@ -101,14 +101,14 @@ Maven com.github.saasquatch apache-client5-reactive - 0.0.6 + 0.0.7 ``` Gradle ```gradle -implementation 'com.github.saasquatch:apache-client5-reactive:0.0.6' +implementation 'com.github.saasquatch:apache-client5-reactive:0.0.7' ``` ## License diff --git a/build.gradle b/build.gradle index 0fc900c..c26cdf2 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ plugins { } group = 'com.saasquatch' -version = '0.0.6-SNAPSHOT' +version = '0.0.7-SNAPSHOT' tasks.compileJava.options.encoding = 'UTF-8' tasks.compileTestJava.options.encoding = 'UTF-8'