Skip to content

Commit

Permalink
Release Spring Fu 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sdeleuze committed Sep 22, 2020
1 parent 1741e53 commit 3f09719
Show file tree
Hide file tree
Showing 18 changed files with 21 additions and 20 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.1-SNAPSHOT"
version = "0.4.1"
group = "org.springframework.fu"

dependencyManagement {
Expand Down
5 changes: 3 additions & 2 deletions jafu/README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:spring-fu-version: 0.4.0
:spring-fu-version: 0.4.1
: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,8 @@ Be aware that a few static imports will be needed.

=== Getting started

* Create a Spring `2.4.x.RELEASE` project on https://start.spring.io/[start.spring.io]
* Go to https://start.spring.io/[start.spring.io]
* Select the latest Spring Boot `2.4.0` milestone
* 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.4.0
:spring-fu-version: 0.4.1
: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.4.x.RELEASE` release
* Select the latest Spring Boot `2.4.0` milestone
* 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.1-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-jafu:0.4.1")

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.1-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-jafu:0.4.1")
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.1-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-jafu:0.4.1")

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.1-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-jafu:0.4.1")

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.1-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.1")
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.1-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.1")
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.1-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.1")
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-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.1-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.1")
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.1-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.1")
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.1-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.1")
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.1-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.1")
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.1-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.1")
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.1-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.1")
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.1-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.1")
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.1-SNAPSHOT")
implementation("org.springframework.fu:spring-fu-kofu:0.4.1")
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 3f09719

Please sign in to comment.