Skip to content

Commit

Permalink
Bumped version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nsforth committed Dec 2, 2024
1 parent a127c26 commit 22b6fb2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nmea0183"
version = "0.4.0"
version = "0.5.0"
authors = ["Nikita Staroverov <[email protected]>"]
edition = "2018"
description = "NMEA 0183 parser targetting mostly embedded devices but not limited to."
Expand All @@ -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" }
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -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

Expand Down

0 comments on commit 22b6fb2

Please sign in to comment.