Skip to content

Commit

Permalink
Release Spring Fu 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sdeleuze committed Aug 30, 2020
1 parent a7ed44b commit c83e53f
Show file tree
Hide file tree
Showing 19 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ allprojects {
plugin("io.spring.dependency-management")
}

version = "0.4.0-SNAPSHOT"
version = "0.4.0"
group = "org.springframework.fu"

dependencyManagement {
Expand Down
4 changes: 2 additions & 2 deletions jafu/README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:spring-fu-version: 0.3.2
:spring-fu-version: 0.4.0
:jafu-javadoc-url: http://repo.spring.io/milestone/org/springframework/fu/spring-fu-jafu/{spring-fu-version}/spring-fu-jafu-{spring-fu-version}-javadoc.jar!
:framework-javadoc-url: https://docs.spring.io/spring-framework/docs/5.3.x/javadoc-api

Expand All @@ -18,7 +18,7 @@ Be aware that a few static imports will be needed.

=== Getting started

* Create a Spring `2.3.x.RELEASE` project on https://start.spring.io/[start.spring.io]
* Create a Spring `2.4.x.RELEASE` project on https://start.spring.io/[start.spring.io]
* Add the Spring milestone repository `https://repo.spring.io/milestone`
* Select the "Web" starter
* Add the `org.springframework.fu:spring-fu-jafu:{spring-fu-version}` dependency
Expand Down
4 changes: 2 additions & 2 deletions kofu/README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:spring-fu-version: 0.3.2
:spring-fu-version: 0.4.0
:kofu-kdoc-url: http://repo.spring.io/milestone/org/springframework/fu/spring-fu-kofu/{spring-fu-version}/spring-fu-kofu-{spring-fu-version}-javadoc.jar!
:framework-kdoc-url: https://docs.spring.io/spring-framework/docs/5.2.x/kdoc-api

Expand Down Expand Up @@ -70,7 +70,7 @@ To use WebFlux.fn instead
=== Getting started

* Go to https://start.spring.io/#!type=gradle-project&language=kotlin[start.spring.io]
* Select the latest Spring Boot `2.3.x.RELEASE` release
* Select the latest Spring Boot `2.4.x.RELEASE` release
* Add the Spring milestone repository `https://repo.spring.io/milestone`
* Select the "Web" starter
* Add the `org.springframework.fu:spring-fu-kofu:{spring-fu-version}` dependency
Expand Down
2 changes: 1 addition & 1 deletion samples/jafu-reactive-minimal/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ java {
}

dependencies {
implementation("org.springframework.fu:spring-fu-jafu:0.4.0-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-jafu:0.4.0")

implementation("org.springframework.boot:spring-boot-starter-webflux")

Expand Down
2 changes: 1 addition & 1 deletion samples/jafu-reactive-mongodb/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ java {
}

dependencies {
implementation("org.springframework.fu:spring-fu-jafu:0.4.0-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-jafu:0.4.0")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-mustache")
implementation("org.springframework.boot:spring-boot-starter-data-mongodb-reactive")
Expand Down
2 changes: 1 addition & 1 deletion samples/jafu-reactive-r2dbc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ java {
}

dependencies {
implementation("org.springframework.fu:spring-fu-jafu:0.4.0-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-jafu:0.4.0")

implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-mustache")
Expand Down
2 changes: 1 addition & 1 deletion samples/jafu-servlet-minimal/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ java {
}

dependencies {
implementation("org.springframework.fu:spring-fu-jafu:0.4.0-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-jafu:0.4.0")

implementation("org.springframework.boot:spring-boot-starter-web")

Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-coroutines-mongodb/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.0-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.0")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-mustache")
implementation("org.springframework.boot:spring-boot-starter-data-mongodb-reactive")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-coroutines-r2dbc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.0-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.0")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-mustache")
implementation("org.springframework.boot:spring-boot-starter-data-r2dbc")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-coroutines-validation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.0-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.0")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-petclinic-jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<dependency>
<groupId>org.springframework.fu</groupId>
<artifactId>spring-fu-kofu</artifactId>
<version>0.4.0-SNAPSHOT</version>
<version>0.4.0</version>
</dependency>

<!-- Spring and Spring Boot dependencies -->
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-reactive-cassandra/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.0-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.0")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-mustache")
implementation("org.springframework.boot:spring-boot-starter-data-cassandra-reactive")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-reactive-minimal/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.0-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.0")
implementation("org.springframework.boot:spring-boot-starter-webflux")

testImplementation("org.springframework.boot:spring-boot-starter-test")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-reactive-mongodb/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.0-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.0")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-mustache")
implementation("org.springframework.boot:spring-boot-starter-data-mongodb-reactive")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-reactive-r2dbc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.0-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.0")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-mustache")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-reactive-redis/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.0-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.0")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-mustache")
implementation("org.springframework.boot:spring-boot-starter-data-redis")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-reactive-validation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.0-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.0")
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("am.ik.yavi:yavi:0.4.0")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-servlet-minimal/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.0-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.0")
implementation("org.springframework.boot:spring-boot-starter-web")

testImplementation("org.springframework.boot:spring-boot-starter-test")
Expand Down
2 changes: 1 addition & 1 deletion samples/kofu-servlet-validation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
implementation("org.springframework.fu:spring-fu-kofu:0.4.0-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.0")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("am.ik.yavi:yavi:0.4.0")
Expand Down

0 comments on commit c83e53f

Please sign in to comment.