From 3d03e016434822859da89b8f7e9e635488611c26 Mon Sep 17 00:00:00 2001 From: Taeik Lim Date: Sat, 20 Apr 2024 00:29:49 +0900 Subject: [PATCH] Prepare for v1.1.0 Signed-off-by: Taeik Lim --- CHANGELOG.md | 2 +- README.md | 10 ++++++++-- gradle.properties | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73d6f466..4274b8a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,7 @@ ## 1.1.x -### 1.1.0-SNAPSHOT +### 1.1.0 #### New Features diff --git a/README.md b/README.md index 549b0f00..a20a6355 100644 --- a/README.md +++ b/README.md @@ -45,14 +45,19 @@ fun subJob2(batch: BatchDsl, transactionManager: PlatformTransactionManager): Jo ### Single class reader-processor-writer +- ItemStreamFluxReaderProcessorWriter +- ItemStreamIterableReaderProcessorWriter +- ItemStreamIterableReaderProcessorWriter +- ItemStreamSimpleReaderProcessorWriter + ```kotlin // single class @Component @StepScope -class SampleTasklet : ItemStreamReaderProcessorWriter { +class SampleTasklet : ItemStreamFluxReaderProcessorWriter { private var count = 0 - override fun readFlux(executionContext: ExecutionContext): Flux { + override fun readFlux(executionContext: ExecutionContext): Flux { return Flux.generate { sink -> if (count < 20) { sink.next(count) @@ -101,6 +106,7 @@ We've tested following versions only. Other versions may not work. | Batch Plus (Latest) | Batch | Boot Starter | Kotlin | Java | Status | Samples | |---------------------|-------|---------------|---------------|---------------|------------|--------------------------------------------------------------------------------------------| +| 1.1.x (1.1.0) | 5.1.x | 3.2.x ~ 3.2.x | 1.5 or higher | 17 or higher | Maintained | [Samples](https://github.com/naver/spring-batch-plus/tree/main/spring-batch-plus-sample) | | 1.0.x (1.0.1) | 5.0.x | 3.0.x ~ 3.1.x | 1.5 or higher | 17 or higher | Maintained | [Samples](https://github.com/naver/spring-batch-plus/tree/1.0.x/spring-batch-plus-sample) | | 0.3.x (0.3.1) | 4.3.x | 2.4.x ~ 2.7.x | 1.5 or higher | 1.8 or higher | Maintained | [Samples](https://github.com/naver/spring-batch-plus/tree/0.3.x/spring-batch-plus-sample) | | 0.2.x (0.2.0) | 4.3.x | 2.4.x ~ 2.7.x | 1.5 or higher | 1.8 or higher | Freezed | [Samples](https://github.com/naver/spring-batch-plus/tree/v0.2.0/spring-batch-plus-sample) | diff --git a/gradle.properties b/gradle.properties index 0500363a..fd10f625 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ kotlin.code.style=official group=com.navercorp.spring -version=1.0.2-SNAPSHOT +version=1.1.0 org.gradle.daemon=true org.gradle.parallel=true org.gradle.caching=true