Skip to content

Commit 1fc4a7a

Browse files
committed
Update version number in readme
1 parent e4b8c88 commit 1fc4a7a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "android_logger"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors = ["The android_logger Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ this library:
1212

1313
```toml
1414
[target.'cfg(target_os = "android")'.dependencies]
15-
android_logger = "0.7"
15+
android_logger = "0.8.1"
1616
```
1717

1818
Example of initialization on activity creation, with log filters:
@@ -30,7 +30,7 @@ fn native_activity_create() {
3030
.with_min_level(Level::Trace) // limit log level
3131
.with_allowed_module_path("hello::crate"), // limit messages to specific crate
3232
Some("mytag") // logs will show under mytag tag. If `None`, the crate name will be used
33-
);
33+
);
3434

3535
trace!("this is a verbose {}", "message");
3636
error!("this is printed by default");
@@ -51,7 +51,7 @@ fn native_activity_create() {
5151
}
5252
```
5353

54-
There is a caveat that this library can only be initialized once
54+
There is a caveat that this library can only be initialized once
5555
(hence the `init_once` function name). However, Android native activity can be
5656
re-created every time the screen is rotated, resulting in multiple initialization calls.
5757
Therefore this library will only log a warning for subsequent `init_once` calls.

0 commit comments

Comments
 (0)