Skip to content

Commit

Permalink
Version 2.6.1 (#696)
Browse files Browse the repository at this point in the history
* Logic error in INSTALL_REQUIRES for LIBSBP_BUILD_ANY

If LIBSBP_BUILD_ANY is enabled, then INSTALL_REQUIRES should contain
SETUP_REQUIRES (which includes numba/llvmlite) otherwise it should
not since the point of the 2.6.0 changes was to remove these
deps.

* Version bumps

* Remove circular dep

* Changelog updates

* doc updates
  • Loading branch information
Jason Mobarak authored Jun 6, 2019
1 parent cfd15ac commit 5fb0831
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 8 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

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

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

**Merged pull requests:**

- Add QZSS eph [\#695](https://github.com/swift-nav/libsbp/pull/695)
- Import standard cmake modules, standardise dependency resolution \[ESD-1246\] \[ESD-1247\] [\#692](https://github.com/swift-nav/libsbp/pull/692)


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

[Full Changelog](https://github.com/swift-nav/libsbp/compare/v2.5.5...v2.6.0)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ verify-prereq-java: verify-prereq-generator

verify-prereq-haskell: verify-prereq-generator

verify-prereq-protobuf: verify-prereq-protobuf
verify-prereq-protobuf: verify-prereq-generator

verify-prereq-docs: verify-prereq-generator
@command -v pdflatex 1>/dev/null 2>/dev/null || { echo >&2 -e "I require \`pdflatex\` but it's not installed. Aborting.\n\nHave you installed pdflatex? See the generator readme (Installing instructions) at \`generator/README.md\` for setup instructions.\n"; exit 1; }
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 6
/** Protocol patch version. */
#define SBP_PATCH_VERSION 0
#define SBP_PATCH_VERSION 1

/** \} */

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.6.0
version: 2.6.1
synopsis: SwiftNav's SBP Library
homepage: https://github.com/swift-nav/libsbp
license: LGPL-3
Expand Down
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.6.0",
"version": "2.6.1",
"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.6.0
2.6.1
5 changes: 3 additions & 2 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,10 +177,11 @@ def write_version_py(filename=VERSION_PY_PATH):
print("Building/installing libsbp version {} (read version: {})".format(sbp_version, VERSION))

ext_modules = None
if not os.environ.get('LIBSBP_BUILD_ANY', None):
if os.environ.get('LIBSBP_BUILD_ANY', None):
INSTALL_REQUIRES.extend(SETUP_REQUIRES)
else:
from sbp.jit.parse import cc
ext_modules = [cc.distutils_extension()]
INSTALL_REQUIRES.extend(SETUP_REQUIRES)

setup(name='sbp',
version=sbp_version,
Expand Down

0 comments on commit 5fb0831

Please sign in to comment.