Skip to content

Commit

Permalink
Merge pull request #54 from daniellasry/master
Browse files Browse the repository at this point in the history
DOCS: bump version to v2.0.0 for new scoped name
  • Loading branch information
daniellasry authored Feb 11, 2019
2 parents e87e937 + 2f1044b commit 4821b36
Show file tree
Hide file tree
Showing 12 changed files with 4,289 additions and 12 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ node_js:
- "7"
- "8"
- "9"
- "10"
before_install:
# before_install code came from here: https://github.com/node-inspector/node-inspector/issues/776
- sudo apt-get install python-software-properties
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ See [@don](https://github.com/don)'s set up guide on [Bluetooth LE with Node.js
Install from npm:

```
npm install openbci-ganglion
npm install @openbci/ganglion
```

## <a name="about"></a> About:
Expand Down
10 changes: 10 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 2.0.0

### Breaking Changes

Name of package is now @openbci/ganglion

### Enhancements

Include node 10 in testing

# v1.2.0

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion examples/accelerometer/accelerometer.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const Ganglion = require('../../openBCIGanglion');
const k = require('openbci-utilities/dist/constants');
const k = require('@openbci/utilities/dist/constants');
const verbose = true;
let ganglion = new Ganglion({
debug: false,
Expand Down
2 changes: 1 addition & 1 deletion examples/ganglionBLED112/ganglionBLED112.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const Ganglion = require('../../openBCIGanglion');
const k = require('openbci-utilities/dist/constants');
const k = require('@openbci/utilities/dist/constants');
const verbose = true;
const debug = false;
let ganglion = new Ganglion({
Expand Down
2 changes: 1 addition & 1 deletion examples/ganglionConnectionTest/ganglionConnectionTest.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const Ganglion = require("../../openBCIGanglion");
const k = require("openbci-utilities/dist/constants");
const k = require("@openbci/utilities/dist/constants");
const verbose = true;
const DO_PACKET_CALCULATIONS = true;
let ganglion = new Ganglion({
Expand Down
2 changes: 1 addition & 1 deletion examples/ganglionServer/ganglionServer.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const Ganglion = require('../../openBCIGanglion');
const k = require('openbci-utilities/dist/constants');
const k = require('@openbci/utilities/dist/constants');
const verbose = true;
let ganglion = new Ganglion({
debug: true,
Expand Down
2 changes: 1 addition & 1 deletion examples/labstreaminglayer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"author": "AJ Keller",
"license": "MIT",
"dependencies": {
"openbci-ganglion": "^1.0.0",
"@openbci/ganglion": "^2.0.0",
"zeromq": "^4.6.0"
},
"devEngines": {
Expand Down
2 changes: 1 addition & 1 deletion openBCIGanglion.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ let noble;
let SerialPort;
const util = require("util");
// Local imports
const { utilities, constants, debug } = require("openbci-utilities");
const { utilities, constants, debug } = require("@openbci/utilities");
const k = constants;
const clone = require("clone");
const bufferEqual = require("buffer-equal");
Expand Down
Loading

0 comments on commit 4821b36

Please sign in to comment.