Skip to content

Commit

Permalink
Release 2.7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Mobarak committed Mar 14, 2020
1 parent c6fea5d commit b544e94
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 9 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## [v2.7.7](https://github.com/swift-nav/libsbp/tree/v2.7.7)

[Full Changelog](https://github.com/swift-nav/libsbp/compare/v2.7.6...v2.7.7)

**Merged pull requests:**

- rust: expose crc errors \[INFRA-125\] [\#786](https://github.com/swift-nav/libsbp/pull/786)
- File playback driver [\#782](https://github.com/swift-nav/libsbp/pull/782)

## [v2.7.6](https://github.com/swift-nav/libsbp/tree/v2.7.6)

[Full Changelog](https://github.com/swift-nav/libsbp/compare/v2.7.5...v2.7.6)
Expand Down
2 changes: 1 addition & 1 deletion c/include/libsbp/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/** Protocol minor version. */
#define SBP_MINOR_VERSION 7
/** Protocol patch version. */
#define SBP_PATCH_VERSION 6
#define SBP_PATCH_VERSION 7

/** \} */

Expand Down
Binary file modified docs/sbp.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion haskell/sbp.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: sbp
version: 2.7.6
version: 2.7.7
synopsis: SwiftNav's SBP Library
homepage: https://github.com/swift-nav/libsbp
license: LGPL-3
Expand Down
6 changes: 3 additions & 3 deletions javascript/sbp.bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sbp",
"version": "2.7.6",
"version": "2.7.7",
"description": "libsbp bindings for JavaScript. More information here: http://swift-nav.github.io/libsbp/",
"files": [
"javascript/*",
Expand Down
2 changes: 1 addition & 1 deletion python/sbp/RELEASE-VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.6
2.7.7
2 changes: 1 addition & 1 deletion rust/sbp/src/parser/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub fn frame(input: &[u8]) -> (Result<SBP>, usize) {
let bytes_read = original_size - o.len();
(
SBP::parse(msg_type, sender_id, &mut &payload[..]),
bytes_read
bytes_read,
)
} else {
(Err(crate::Error::CrcError), 1)
Expand Down

0 comments on commit b544e94

Please sign in to comment.