diff --git a/CHANGELOG.md b/CHANGELOG.md index 73d6f46..4274b8a 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 549b0f0..a20a635 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 0500363..fd10f62 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