Skip to content

Commit 2b7937d

Browse files
committed
Fix a bug that would overcount bytes read from the client due to the PushbackInputStream.
1 parent caf1679 commit 2b7937d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
### Latest versions
44

55
* Latest stable version: `0.3.0`
6-
* Latest release candidate: `1.0.0-RC.1`
6+
* Latest release candidate: `1.0.0-RC.2`
77
* Using Java Virtual Threads
88

99
The goal of this project is to build a full-featured HTTP server and client in plain Java without the use of any libraries. The client and server will use Project Loom virtual threads and blocking I/O so that the Java VM will handle all the context switching between virtual threads as they block on I/O.
@@ -26,20 +26,20 @@ To add this library to your project, you can include this dependency in your Mav
2626
<dependency>
2727
<groupId>io.fusionauth</groupId>
2828
<artifactId>java-http</artifactId>
29-
<version>1.0.0-RC.1</version>
29+
<version>1.0.0-RC.2</version>
3030
</dependency>
3131
```
3232

3333
If you are using Gradle, you can add this to your build file:
3434

3535
```groovy
36-
implementation 'io.fusionauth:java-http:1.0.0-RC.1'
36+
implementation 'io.fusionauth:java-http:1.0.0-RC.2'
3737
```
3838

3939
If you are using Savant, you can add this to your build file:
4040

4141
```groovy
42-
dependency(id: "io.fusionauth:java-http:1.0.0-RC.1")
42+
dependency(id: "io.fusionauth:java-http:1.0.0-RC.2")
4343
```
4444

4545
## Examples Usages:

build.savant

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ restifyVersion = "4.2.1"
1818
slf4jVersion = "2.0.17"
1919
testngVersion = "7.11.0"
2020

21-
project(group: "io.fusionauth", name: "java-http", version: "1.0.0-RC.1", licenses: ["ApacheV2_0"]) {
21+
project(group: "io.fusionauth", name: "java-http", version: "1.0.0-RC.2", licenses: ["ApacheV2_0"]) {
2222
workflow {
2323
fetch {
2424
// Dependency resolution order:

java-http.ipr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1450,4 +1450,4 @@
14501450
</SOURCES>
14511451
</library>
14521452
</component>
1453-
</project>
1453+
</project>

0 commit comments

Comments
 (0)