Skip to content

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
epoberezkin committed Feb 22, 2015
1 parent 413f2de commit 952ff54
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 7 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,24 @@ http://opensource.org/licenses/BSD-2-Clause

Changes log
-----------
###0.2.0

- `Messenger` (and related classes), `Model`, `Connector`, `minder`, `util.check` and `util.logger` extracted to [milo-core](https://github.com/milojs/milo-core) that can be used in node.js. They are still bundled with `milo` so `milo-core` doesn't have to be required separately.
- `Model` properties allow '-' symbol in them
- `util.request.file` support for upload progress
- `MLDialog` support for custom initialization
- `MLDate` support for min/max
- `Drag` facet support for additional data types supplied to drag operation
- `util.promise` removed, either native Promise or 3rd party library can be used
- `util.request` returns native promises (if 3rd party library is used, it should define global `window.Promise` with the same API as native Promise)
- `Messenger.prototype.onceSync` method added
- `milo.createComponentClass` added to simplify creation of component classes
- `util.jsonParse` deprecated, _.jsonParse should be used instead
- `util.error` deprecated


###0.1.10###

- `Messenger` performance improvement
- `MLSuperCombo` support for remote list of options
- `TransactionHistory` can emit messages
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "milo",
"version": "0.1.10",
"version": "0.2.0",
"homepage": "https://github.com/milojs/milo",
"authors": [
"MOL Technical <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion lib/milo.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ _.extend(milo, {
Component: require('./components/c_class'),
Command: require('./command'),
registry: require('./registry'),
milo_version: '0.1.10',
milo_version: '0.2.0',
createComponentClass: require('./util/create_component_class'),
destroy: destroy
});
Expand Down
4 changes: 2 additions & 2 deletions milo.bundle.js

Large diffs are not rendered by default.

Loading

0 comments on commit 952ff54

Please sign in to comment.