Skip to content

Commit

Permalink
3.0.0-rc.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alshakero committed Oct 4, 2017
1 parent 183888c commit 713298a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "json-patch-queue",
"version": "2.0.1",
"version": "3.0.0-rc.0",
"homepage": "https://github.com/Palindrom/JSON-Patch-queue",
"description": "Queue for Versioned JSON-Patch - makes sure that your JSON Patches (RFC6902) gets applied in correct order",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export class JSONPatchQueueSynchronous {
/**
* JSON Patch Queue for synchronous operations, and asynchronous networking.
* version: 2.0.1
* version: 3.0.0-rc.0
* @param {Object} Obj The target object where patches are applied
* @param {JSON-Pointer} versionPath JSON-Pointers to version numbers
* @param {function} apply apply(JSONobj, JSONPatchSequence) function to apply JSONPatch to object.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "json-patch-queue",
"version": "2.0.1",
"version": "3.0.0-rc.0",
"description": "Queue for Versioned JSON-Patch - makes sure that your JSON Patches (RFC6902) gets applied in correct order",
"main": "./src/index.js",
"typings": "index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* version: 2.0.1
* version: 3.0.0-rc.0
*/
var queue = require("./json-patch-queue");
var sync = require("./json-patch-queue-synchronous");
Expand Down
2 changes: 1 addition & 1 deletion src/json-patch-queue-synchronous.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* JSON Patch Queue for synchronous operations, and asynchronous networking.
* version: 2.0.1
* version: 3.0.0-rc.0
* @param {Object} Obj The target object where patches are applied
* @param {JSON-Pointer} versionPath JSON-Pointers to version numbers
* @param {function} apply apply(JSONobj, JSONPatchSequence) function to apply JSONPatch to object.
Expand Down
2 changes: 1 addition & 1 deletion src/json-patch-queue.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* JSON Patch Queue for asynchronous operations, and asynchronous networking.
* version: 2.0.1
* version: 3.0.0-rc.0
* @param {Object} obj The target object where patches are applied
* @param {Array<JSON-Pointer>} versionPaths JSON-Pointers to version numbers [local, remote]
* @param {function} apply apply(JSONobj, JSONPatchSequence) function to apply JSONPatch to object.
Expand Down

0 comments on commit 713298a

Please sign in to comment.