Skip to content

Commit

Permalink
Release 0.6 (#22)
Browse files Browse the repository at this point in the history
Co-authored-by: Sergej Shafarenka <[email protected]>
  • Loading branch information
sergejsha and Sergej Shafarenka authored Jul 24, 2024
1 parent dce47be commit 9f10e7b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change log

## unreleased
## 0.6

- Added: Control loggable level per class (#20)
- Added: Auto-detect tag names on iOS, Android and JVM platforms (#21)
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ private val tag = namedTag("ScaleAnimation", LoggableLevel.Nothing)
```kotlin
class Reader {
private val tag = classTag<Reader>()

init {
d(tag) { "Reader is created" }
}
Expand All @@ -130,7 +131,7 @@ In `gradle/libs.versions.toml`
```toml
[versions]
kotlin = "2.0.0"
logger = "0.5"
logger = "0.6"

[libraries]
logger = { module = "de.halfbit:logger", version.ref = "logger" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ plugins {

allprojects {
group = "de.halfbit"
version = "0.6-SNAPSHOT"
version = "0.6"
}

0 comments on commit 9f10e7b

Please sign in to comment.