Skip to content

Commit

Permalink
Published version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mweststrate committed Nov 26, 2015
1 parent c9a47e4 commit d476ec4
Show file tree
Hide file tree
Showing 7 changed files with 81 additions and 15 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.1.0

* Exposed `ObservableMap` type
* Introduced `mobservable.untracked(block)`
* Introduced `mobservable.autorunAsync(block, delay)`

# 1.0.9

Removed accidental log message
Expand Down
76 changes: 66 additions & 10 deletions dist/mobservable.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/mobservable.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/mobservable.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/mobservable.min.js.map

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,6 +1,6 @@
{
"name": "mobservable",
"version": "1.0.9",
"version": "1.1.0",
"description": "Observable data. Reactive functions. Simple code.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down
4 changes: 4 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ export {
transaction
} from './dnode';

export {
ObservableMap
} from './observablemap';

/**
* 'Private' elements that are exposed for testing and debugging utilities
*/
Expand Down

0 comments on commit d476ec4

Please sign in to comment.