Skip to content

Commit

Permalink
Version 5.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbertolini committed Nov 20, 2024
1 parent 84b0f6f commit 052004b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# liquibase-slf4j
Version 5.0.0<br/>
Version 5.1.0<br/>
Written by Matt Bertolini

[![Maven Central](https://img.shields.io/maven-central/v/com.mattbertolini/liquibase-slf4j.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.mattbertolini%22%20AND%20a:%22liquibase-slf4j%22)
Expand All @@ -22,7 +22,7 @@ Grab the library from Maven Central and place it in your classpath.
<dependency>
<groupId>com.mattbertolini</groupId>
<artifactId>liquibase-slf4j</artifactId>
<version>5.0.0</version>
<version>5.1.0</version>
<scope>runtime</scope>
</dependency>
```
Expand All @@ -31,18 +31,18 @@ Grab the library from Maven Central and place it in your classpath.

Groovy DSL:
```groovy
runtimeOnly 'com.mattbertolini:liquibase-slf4j:5.0.0'
runtimeOnly 'com.mattbertolini:liquibase-slf4j:5.1.0'
```

Kotlin DSL:
```kotlin
runtimeOnly("com.mattbertolini:liquibase-slf4j:5.0.0")
runtimeOnly("com.mattbertolini:liquibase-slf4j:5.1.0")
```

**Ivy**

```xml
<dependency org="com.mattbertolini" name="liquibase-slf4j" rev="5.0.0"/>
<dependency org="com.mattbertolini" name="liquibase-slf4j" rev="5.1.0"/>
```

## License
Expand Down Expand Up @@ -121,6 +121,13 @@ unit tests to verify the problem is fixed.

## Release Notes

**5.1.0 - 2024-11-19**

- Fix issue with JUL `Level.OFF` logging a message when no message should be logged ([#20](https://github.com/mattbertolini/liquibase-slf4j/issues/20)).
- Update to Liquibase 4.30.0.
- Update SLF4J to 2.0.16.
- Update build to Ivy 2.5.2.

**5.0.0 - 2023-03-20**

- Add JPMS module-info file to support Java 9+ modules.
Expand Down
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project.name=liquibase-slf4j
project.version=5.1.0-SNAPSHOT
project.version=5.1.0

java.release.version=8

Expand Down

0 comments on commit 052004b

Please sign in to comment.