Skip to content

Commit

Permalink
Bumped version for npm release
Browse files Browse the repository at this point in the history
  • Loading branch information
janhommes committed Apr 4, 2018
1 parent 70017ae commit e36f6b1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# o.js

_o.js beta v0.3.6_
_o.js beta v0.3.8_

o.js is a client side Odata Javascript library to simplify the request of data. The main goal is to build a **standalone, lightweight and easy** to understand Odata lib.

Expand Down
2 changes: 1 addition & 1 deletion o.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// +++
// o.js v0.3.7
// o.js v0.3.8
//
// o.js is a simple oData wrapper for JavaScript.
// Currently supporting the following operations:
Expand Down
2 changes: 1 addition & 1 deletion o.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "o.js",
"description": "o.js is a client side Odata Javascript library to simplify the request of data. The main goal is to build a standalone, lightweight and easy to understand Odata lib.",
"version": "0.3.7",
"version": "0.3.8",
"main": "o.js",
"dependencies": {
"q": "^1.5.0",
Expand Down
5 changes: 4 additions & 1 deletion spec/browser/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,10 @@ QUnit.test('GET People - $format off - autoFormat=false', function(assert) {
o().config({ autoFormat: false });

o('http://services.odata.org/V4/(S(ms4wufavzmwsg3fjo3eqdgak))/TripPinServiceRW/People').get(function(data) {
assert.ok(this.query().indexOf('$format') === -1, printResult(this, data));
assert.ok(this.query().indexOf('$format') === -1, printResult(this, data));
console.log(this);
console.log(data);
debugger;
done();
}, function(e) {
assert.ok(e === 200, printResult(this, e));
Expand Down

0 comments on commit e36f6b1

Please sign in to comment.