Skip to content

Commit

Permalink
0.12.3 - changed to work with latest version of ts-mortar and new ts-…
Browse files Browse the repository at this point in the history
…typed-promises library.
  • Loading branch information
TeamworkGuy2 committed May 26, 2016
1 parent 03c4bb6 commit 2013d7e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ This project does its best to adhere to [Semantic Versioning](http://semver.org/


--------
### [0.12.2](N/A) - 2016-05-25
### [0.12.3](N/A) - 2016-05-26
#### Changed
* Changed to work with latest version of ts-mortar and new ts-typed-promises library


--------
### [0.12.2](https://github.com/TeamworkGuy2/lokijs-collections/commit/03c4bb6bb3c9f517d1d97fd0a21750735564bcca) - 2016-05-25
#### changed
* Replaced two console.error() calls with throw new Error()

Expand Down
2 changes: 1 addition & 1 deletion db-collections/in-mem-collections.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/// <reference path="../../definitions/lib/lokijs.d.ts" />
/// <reference path="../../definitions/lib/Q.d.ts" />
/// <reference path="../../ts-mortar/events/events.d.ts" />
/// <reference path="../../ts-promise-tasks/promises/ts-promises.d.ts" />
/// <reference path="../../ts-typed-promises/promises/ts-promises.d.ts" />
/// <reference path="../../ts-code-generator/code-types/ast-types.d.ts" />
/// <reference path="../../ts-code-generator/code-types/code-types.d.ts" />
/// <reference path="../../ts-code-generator/code-types/model-types.d.ts" />
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": "lokijs-collections",
"version": "0.12.2",
"version": "0.12.3",
"description": "Strongly typed TypeScript collections for [LokiJS] (https://github.com/techfort/LokiJS), including key constraints (i.e. primary keys, non-null fields, max length strings), and collection change trackers.",
"dependencies": {
"lokijs": "~1.2.0",
Expand Down
2 changes: 1 addition & 1 deletion sync/SyncDataCollection.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";
var Arrays = require("../../ts-mortar/utils/Arrays");
var Defer = require("../../ts-promise-tasks/promises/Defer");
var Defer = require("../../ts-typed-promises/promises/Defer");
/** Combines functionality for two operations in one class:
* - Sync a local data collection to a remote data collection (refered to as 'syncing up').
* - Sync a remote data collection to a local data collection (refered to as 'syncing down').
Expand Down
2 changes: 1 addition & 1 deletion sync/SyncDataCollection.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Arrays = require("../../ts-mortar/utils/Arrays");
import Defer = require("../../ts-promise-tasks/promises/Defer");
import Defer = require("../../ts-typed-promises/promises/Defer");

/** Combines functionality for two operations in one class:
* - Sync a local data collection to a remote data collection (refered to as 'syncing up').
Expand Down

0 comments on commit 2013d7e

Please sign in to comment.