diff --git a/Cargo.toml b/Cargo.toml index 1372c76..5cfa7c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nmea0183" -version = "0.4.0" +version = "0.5.0" authors = ["Nikita Staroverov "] edition = "2018" description = "NMEA 0183 parser targetting mostly embedded devices but not limited to." @@ -19,7 +19,7 @@ mtk = [] strict = [] [badges] -travis-ci = { repository = "nsforth/nmea0183", branch = "v0.4.0" } +travis-ci = { repository = "nsforth/nmea0183", branch = "v0.5.0" } codecov = { repository = "nsforth/nmea0183" } is-it-maintained-issue-resolution = { repository = "nsforth/nmea0183" } is-it-maintained-open-issues = { repository = "nsforth/nmea0183" } diff --git a/README.md b/README.md index 060e3f0..760214f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Crates.io](https://img.shields.io/badge/crates.io-v0.4.0-orange.svg?longCache=true)](https://crates.io/crates/nmea0183) +[![Crates.io](https://img.shields.io/badge/crates.io-v0.5.0-orange.svg?longCache=true)](https://crates.io/crates/nmea0183) [![master](https://github.com/nsforth/nmea0183/actions/workflows/rust.yml/badge.svg)](https://github.com/nsforth/nmea0183/actions/workflows/rust.yml) # NMEA 0183 parser. @@ -13,7 +13,8 @@ You do not need to do any preprocessing such as split data to strings or NMEA se # Optional features Parser supports Mediatek-related PMTKSPF non-standard sentence. It is disabled by default. Use "mtk" feature if you need it. -If your receives somehow violates NMEA spec, try disable "strict" feature which enabled by default. For example, without "strict" feauture sentence size is set to 120 chars instead of standart NMEA 79 chars. + +If your receiver somehow violates NMEA spec, try disable "strict" feature which enabled by default. For example, without "strict" feauture sentence size is set to 120 chars instead of standart NMEA 79 chars. # Examples