Skip to content

Commit

Permalink
Prepare release 0.10.0 (#49)
Browse files Browse the repository at this point in the history
Co-authored-by: kaklakariada <[email protected]>
  • Loading branch information
kaklakariada and kaklakariada authored Jan 18, 2025
1 parent db66d1b commit ac65a1a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.10.0] - unreleased
## [0.11.0] - unreleased

## [0.10.0] - 2025-01-18

- [PR #38](https://github.com/itsallcode/simple-jdbc/pull/38): Add method `wrap()` to `SimpleConnection`
- [PR #39](https://github.com/itsallcode/simple-jdbc/pull/39): Add convenience methods `executeStatement` and `query` with generic parameters to `DbOperations`
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Add dependency to your Gradle project:

```groovy
dependencies {
implementation 'org.itsallcode:simple-jdbc:0.9.0'
implementation 'org.itsallcode:simple-jdbc:0.10.0'
}
```

Expand All @@ -38,7 +38,7 @@ Add dependency to your Maven project:
<dependency>
<groupId>org.itsallcode</groupId>
<artifactId>simple-jdbc</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
}

group = 'org.itsallcode'
version = '0.9.0'
version = '0.10.0'

java {
toolchain {
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencyResolutionManagement {
version('mockito', '5.15.2')
version('junitJupiter', '5.11.2')

library('assertj', 'org.assertj:assertj-core:3.27.2')
library('assertj', 'org.assertj:assertj-core:3.27.3')
library('h2', 'com.h2database:h2:2.3.232')
library('junitPioneer', 'org.junit-pioneer:junit-pioneer:2.2.0')
library('equalsverifier', 'nl.jqno.equalsverifier:equalsverifier:3.18.1')
Expand Down

0 comments on commit ac65a1a

Please sign in to comment.