Skip to content

Commit

Permalink
0.14.0 - Updated ts-mortar dependency to latest 0.11.0 and added ts-e…
Browse files Browse the repository at this point in the history
[email protected] for EventListenerList removed from ts-mortar.
  • Loading branch information
TeamworkGuy2 committed Sep 20, 2016
1 parent 13ecd77 commit b8648b5
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ This project does its best to adhere to [Semantic Versioning](http://semver.org/


--------
### [0.13.1](N/A) - 2016-08-24
### [0.14.0](N/A) - 2016-09-19
#### Changed
* Updated to version 0.11.0 of ts-mortar which moved ts-mortar/events/ to a separate library
* Added [email protected] dependency for the EventListenerList previously provided by ts-mortar and used by DataCollection


--------
### [0.13.1](https://github.com/TeamworkGuy2/lokijs-collections/commit/13ecd777d599665f2c6a4a34da1e24d82289d7d0) - 2016-08-24
#### Fixed
* Fixed some .d.ts paths to match DefinitelyTyped structure
* Fixed issue with ModelDefinitionsSet.cloneDtoPropertyTemplate()
Expand Down
2 changes: 1 addition & 1 deletion db-collections/DataCollection.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use strict";
/// <reference path="../../definitions/lokijs/lokijs.d.ts" />
/// <reference path="./in-mem-collections.d.ts" />
var EventListenerList = require("../../ts-mortar/events/EventListenerList");
var EventListenerList = require("../../ts-event-handlers-lite/EventListenerList");
var ChangeTrackers = require("../change-trackers/ChangeTrackers");
var ModelDefinitionsSet = require("../data-models/ModelDefinitionsSet");
/** DataCollection class
Expand Down
2 changes: 1 addition & 1 deletion db-collections/DataCollection.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// <reference path="../../definitions/lokijs/lokijs.d.ts" />
/// <reference path="./in-mem-collections.d.ts" />
import EventListenerList = require("../../ts-mortar/events/EventListenerList");
import EventListenerList = require("../../ts-event-handlers-lite/EventListenerList");
import ChangeTrackers = require("../change-trackers/ChangeTrackers");
import ModelDefinitionsSet = require("../data-models/ModelDefinitionsSet");

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,6 +1,6 @@
/// <reference path="../../definitions/lokijs/lokijs.d.ts" />
/// <reference path="../../definitions/q/Q.d.ts" />
/// <reference path="../../ts-mortar/events/events.d.ts" />
/// <reference path="../../ts-event-handlers-lite/events.d.ts" />
/// <reference path="../../ts-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" />
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"lokijs": "~1.2.0",
"q": "~1.4.1",
"ts-code-generator": "~0.15.0",
"ts-mortar": "~0.7.2",
"ts-event-handlers-lite": "~0.1.0",
"ts-mortar": "~0.11.0",
"ts-promises": "~0.1.0"
},
"devDependencies": {
Expand Down

0 comments on commit b8648b5

Please sign in to comment.