Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbertolini committed Dec 1, 2023
1 parent 61492bf commit 59f11f2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,18 +113,18 @@ Maven:
<dependency>
<groupId>com.mattbertolini</groupId>
<artifactId>spring-webmvc-annotated-data-binder</artifactId>
<version>0.5.0</version>
<version>0.6.0</version>
</dependency>
```

Gradle:
```groovy
implementation 'com.mattbertolini:spring-webmvc-annotated-data-binder:0.5.0'
implementation 'com.mattbertolini:spring-webmvc-annotated-data-binder:0.6.0'
```

Ivy:
```xml
<dependency org="com.mattbertolini" name="spring-webmvc-annotated-data-binder" rev="0.5.0"/>
<dependency org="com.mattbertolini" name="spring-webmvc-annotated-data-binder" rev="0.6.0"/>
```

### Spring WebFlux
Expand All @@ -134,18 +134,18 @@ Maven:
<dependency>
<groupId>com.mattbertolini</groupId>
<artifactId>spring-webflux-annotated-data-binder</artifactId>
<version>0.5.0</version>
<version>0.6.0</version>
</dependency>
```

Gradle:
```groovy
implementation 'com.mattbertolini:spring-webflux-annotated-data-binder:0.5.0'
implementation 'com.mattbertolini:spring-webflux-annotated-data-binder:0.6.0'
```

Ivy:
```xml
<dependency org="com.mattbertolini" name="spring-webflux-annotated-data-binder" rev="0.5.0"/>
<dependency org="com.mattbertolini" name="spring-webflux-annotated-data-binder" rev="0.6.0"/>
```

### Configuration
Expand Down
14 changes: 9 additions & 5 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# Release Notes

## 0.6.0-SNAPSHOT
Released TBD

- Restructured Gradle build files to more convention based approached
- Started using type-safe dependency notation in build files
## 0.6.0
Released 2023-12-01

- Restructured Gradle build files to more convention based approach.
- Started using type-safe dependency notation in build files.
- Fix an issue where servlet api version was not being set correctly in published artifacts in Maven Central ([#11](https://github.com/mattbertolini/spring-annotated-web-data-binder/issues/11)).
- Upgrade Spring Framework to 5.3.28.
- Upgrade Spring Boot to 2.7.13
- Update build to Gradle 8.5

## 0.5.0
Released 2022-05-22
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ allprojects {
apply(plugin = "com.mattbertolini.buildlogic.project-conventions")

group = "com.mattbertolini"
version = "0.6.0-SNAPSHOT"
version = "0.6.0"
}

val rootJacocoDir = "${rootProject.buildDir}/reports/jacoco/testCodeCoverageReport"
Expand Down

0 comments on commit 59f11f2

Please sign in to comment.