Skip to content

Commit 72f7554

Browse files
author
Jason Mobarak
committed
Release 3.1.2
1 parent dad6635 commit 72f7554

File tree

11 files changed

+1110
-1080
lines changed

11 files changed

+1110
-1080
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
## [v3.1.2](https://github.com/swift-nav/libsbp/tree/v3.1.2)
4+
5+
[Full Changelog](https://github.com/swift-nav/libsbp/compare/v3.1.1...v3.1.2)
6+
7+
**Merged pull requests:**
8+
9+
- python: remove accidental numpy import [INFRA-243] [\#818](https://github.com/swift-nav/libsbp/pull/818)
10+
- Auto submodule update: cmake - Standardize system include targets \(\#62\) [\#817](https://github.com/swift-nav/libsbp/pull/817)
11+
312
## [v3.1.1](https://github.com/swift-nav/libsbp/tree/v3.1.1)
413

514
[Full Changelog](https://github.com/swift-nav/libsbp/compare/v3.1.0...v3.1.1)

HOWTO.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Ubuntu 16.04.
139139

140140
```shell
141141
make c haskell javascript rust
142-
git add c/include/libsbp/version.h sbp.cabal package.json package-lock.json rust/sbp/Cargo.toml
142+
git add c/include/libsbp/version.h haskell/sbp.cabal package.json package-lock.json rust/sbp/Cargo.toml
143143
git commit -m 'INCREMENTED_TAG'
144144
git tag -f -a INCREMENTED_TAG -m "Version INCREMENTED_TAG of libsbp."
145145
```

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,15 +119,15 @@ You can then make this image operate on your local workspace like this:
119119

120120
`cd ..` (back up to the root of the repo)
121121

122-
``docker run -v `pwd`:/mnt/workspace -i -t your-local-image-name:latest``
122+
``docker run -v $PWD:/mnt/workspace -i -t your-local-image-name:latest``
123123

124124
Once in the image, simply type `make all` to gererate all the libsbp bindings.
125125

126126
#### Using the prebuilt one from DockerHub
127127

128-
You can also pull a copy from dockerhub (no guarantees on freshness):
128+
Ycu can also pull a copy from dockerhub (no guarantees on freshness):
129129

130-
``docker run -v `pwd`:/mnt/workspace -i -t swiftnav/libsbp-build:2020.01.15``
130+
``docker run -v $PWD:/mnt/workspace -i -t swiftnav/libsbp-build:2020.01.15``
131131

132132
Check this [link](https://hub.docker.com/r/swiftnav/libsbp-build/tags) for newer tags.
133133

c/include/libsbp/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/** Protocol minor version. */
2626
#define SBP_MINOR_VERSION 1
2727
/** Protocol patch version. */
28-
#define SBP_PATCH_VERSION 0
28+
#define SBP_PATCH_VERSION 2
2929

3030
/** \} */
3131

docs/sbp.pdf

168 Bytes
Binary file not shown.

haskell/sbp.cabal

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

0 commit comments

Comments
 (0)