Skip to content

Commit

Permalink
Merge pull request #6 from radarlabs/remove-beta
Browse files Browse the repository at this point in the history
remove beta
  • Loading branch information
kochis authored Dec 7, 2018
2 parents a11608a + b37c448 commit ed162f4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Web JavaScript SDK for Radar, the location platform for mobile apps",
"homepage": "https://radar.io",
"license": "Apache-2.0",
"version": "1.0.0-beta5",
"version": "1.0.0",
"main": "dist/index.js",
"module": "src/index.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default '1.0.0-beta5';
export default '1.0.0';
12 changes: 12 additions & 0 deletions test/version.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const chai = require('chai');

const { expect } = chai;

import packageJSON from '../package.json';
import VERSION from '../src/version';

describe('VERSION', () => {
it('should match version in package.json', () => {
expect(VERSION).to.eq(packageJSON.version);
});
});

0 comments on commit ed162f4

Please sign in to comment.