Skip to content

Commit

Permalink
Prepare 2.0.4 release (#399)
Browse files Browse the repository at this point in the history
* Prepare 2.0.4 release

* Update CHANGELOG.md
  • Loading branch information
samhill303 authored Jun 10, 2024
1 parent 9802a60 commit e87d7da
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [2.0.4] - 2024-06-10
### Changed
- Added `ChunkedLogWriter`. This LogWriter can be used to wrap existing LogWriters and break their output into defined sizes. This is useful if your LogWriter outputs to something which limits message length (such as Logcat) (#396 thanks @psh)
```kotlin
Logger.setLogWriters(platformLogWriter().chunked(maxMessageLength = 4000))
```
## [2.0.3] - 2024-02-03

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ org.gradle.jvmargs=-Xmx4g
SONATYPE_HOST=DEFAULT
RELEASE_SIGNING_ENABLED=true
GROUP=co.touchlab
VERSION_NAME=2.0.3
VERSION_NAME=2.0.4

POM_NAME=Kermit
POM_DESCRIPTION=Kermit The Log
Expand Down

0 comments on commit e87d7da

Please sign in to comment.