Skip to content

Commit 2aa394f

Browse files
author
Jason Mobarak
authored
Release version 2.5.5 (#690)
* Remove generated code * Add flake8 config * Version bumps * Version bumps * Update changelog
1 parent bd682ec commit 2aa394f

File tree

12 files changed

+31
-732
lines changed

12 files changed

+31
-732
lines changed

CHANGELOG.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
# Change Log
22

3-
## [2.5.4](https://github.com/swift-nav/libsbp/tree/v2.5.4)
3+
## [2.5.5](https://github.com/swift-nav/libsbp/tree/v2.5.5) (2019-05-16)
4+
5+
[Full Changelog](https://github.com/swift-nav/libsbp/compare/v2.5.4...v2.5.5)
6+
7+
**Closed issues:**
8+
9+
- MSG\_INIT\_BASE / Hotstart with known Position [\#681](https://github.com/swift-nav/libsbp/issues/681)
10+
- Problem when casting messages from callback in C [\#611](https://github.com/swift-nav/libsbp/issues/611)
11+
12+
**Merged pull requests:**
13+
14+
- Use piksi\_tools master in benchmark [\#689](https://github.com/swift-nav/libsbp/pull/689)
15+
- Add source to gal eph [\#688](https://github.com/swift-nav/libsbp/pull/688)
16+
- Added additional checks for tools in the Makefile [\#684](https://github.com/swift-nav/libsbp/pull/684)
17+
- \[ESD-1238\] Do not call nullary constructors in Haskell ToJSON [\#680](https://github.com/swift-nav/libsbp/pull/680)
18+
- Automated Travis benchmark \[ESD-1158\] [\#667](https://github.com/swift-nav/libsbp/pull/667)
19+
- Log a warning for dispatch exceptions [\#653](https://github.com/swift-nav/libsbp/pull/653)
20+
21+
## [2.5.4](https://github.com/swift-nav/libsbp/tree/v2.5.4) (2019-04-09)
422

523
[Full Changelog](https://github.com/swift-nav/libsbp/compare/v2.5.3...v2.5.4)
624

c/include/libsbp/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/** Protocol minor version. */
2626
#define SBP_MINOR_VERSION 5
2727
/** Protocol patch version. */
28-
#define SBP_PATCH_VERSION 4
28+
#define SBP_PATCH_VERSION 5
2929

3030
/** \} */
3131

docs/sbp.pdf

-499 Bytes
Binary file not shown.

haskell/sbp.cabal.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sbp
2-
version: 2.5.4
2+
version: 2.5.5
33
synopsis: SwiftNav's SBP Library
44
homepage: https://github.com/swift-nav/libsbp
55
license: LGPL-3

javascript/sbp.bundle.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sbp",
3-
"version": "2.5.4",
3+
"version": "2.5.5",
44
"description": "libsbp bindings for JavaScript. More information here: http://swift-nav.github.io/libsbp/",
55
"files": [
66
"javascript/*",

python/.flake8

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[flake8]
2+
ignore = E111

python/sbp/RELEASE-VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.5.4
1+
2.5.5

python/sbp/jit/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
parse_float_c.c
2+
parse_float_c.o

0 commit comments

Comments
 (0)