Skip to content

Commit 501f0e8

Browse files
committed
Bump version for release
1 parent 2b7937d commit 501f0e8

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
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.2`
6+
* Latest release candidate: `1.0.0`
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.2</version>
29+
<version>1.0.0</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.2'
36+
implementation 'io.fusionauth:java-http:1.0.0'
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.2")
42+
dependency(id: "io.fusionauth:java-http:1.0.0")
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.2", licenses: ["ApacheV2_0"]) {
21+
project(group: "io.fusionauth", name: "java-http", version: "1.0.0", licenses: ["ApacheV2_0"]) {
2222
workflow {
2323
fetch {
2424
// Dependency resolution order:

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>io.fusionauth</groupId>
44
<artifactId>java-http</artifactId>
5-
<version>1.0.0-RC.1</version>
5+
<version>1.0.0</version>
66
<packaging>jar</packaging>
77

88
<name>Java HTTP library (client and server)</name>
@@ -198,4 +198,4 @@
198198
</build>
199199
</profile>
200200
</profiles>
201-
</project>
201+
</project>

0 commit comments

Comments
 (0)