diff --git a/.travis.yml b/.travis.yml index a6d97e0..20a0f6f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,6 @@ before_install: after_success: - "./node_modules/angular-ui-publisher/travis/authentication.sh || exit 0" - "grunt dist build:gh-pages publish:gh-pages build:bower publish:bower" -script: grunt env: global: - REPO="git@github.com:angular-ui/ui-codemirror.git" diff --git a/CHANGELOG.md b/CHANGELOG.md index 2713e5f..5c725ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ + +## 0.2.0 (2014-12-08) + + +#### Bug Fixes + +* digest in progress ([645d6e5d](https://github.com/angular-ui/ui-codemirror/commit/645d6e5da2cfb40afa342cd6822374b2299bba39)) +* refresh codemirror in next event loop ([1c03cacd](https://github.com/angular-ui/ui-codemirror/commit/1c03cacdd30d5b70cb0e8c15b6383fbfddeff6d2), closes [#76](https://github.com/angular-ui/ui-codemirror/issues/76)) +* undefined newValue watched ([f5061497](https://github.com/angular-ui/ui-codemirror/commit/f5061497f465090be4bb53a4b4b6c534c586d214)) +* not watching `ui-codemirror-opts` attribute ([0f5802ed](https://github.com/angular-ui/ui-codemirror/commit/0f5802ed39444b3c3dcf49b5bbcc9fd756833cfe)) +* element not removed when the element gets replaced ([7dfcb070](https://github.com/angular-ui/ui-codemirror/commit/7dfcb0704220d8034647b18e41ffd9ee7904d525)) +* **grunt:** do a standard livereload over the built branch ([a856e085](https://github.com/angular-ui/ui-codemirror/commit/a856e085a0ddff949b15c5cac9ec67b4323d8e13)) + + +#### Features + +* Makes the onChange event handled by ngChange ([fa52ea4e](https://github.com/angular-ui/ui-codemirror/commit/fa52ea4e86b85dc9e2b90996282cb1cc12020d04)) +* allow using it as an element ([42de591d](https://github.com/angular-ui/ui-codemirror/commit/42de591db63711d27b75fa5d345623ab3e472efb)) +* **demo:** update demo to Angular UI Publisher 1.2.x ([18317b7c](https://github.com/angular-ui/ui-codemirror/commit/18317b7c010c80e3eadc4f516eae62d2be837e73), closes [#34](https://github.com/angular-ui/ui-codemirror/issues/34)) +* **directive:** add instance access throught $broadcast event ([14f6954c](https://github.com/angular-ui/ui-codemirror/commit/14f6954c376479ac2108edc0556b48c6b1123953)) +* **publisher:** initial publisher use commit ([a144e2f8](https://github.com/angular-ui/ui-codemirror/commit/a144e2f8b3134df9e4a9ce313778b0086ea82af9)) + + ## v0.1.0 (2013-12-28) diff --git a/README.md b/README.md index 7d5025c..1647a7e 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ This directive allows you to add [CodeMirror](http://codemirror.net/) to your te ## Requirements -- AngularJS -- [CodeMirror 3.x|4.x](https://github.com/marijnh/CodeMirror) +- AngularJS 1.3.x +- [CodeMirror 4.8.x](https://github.com/marijnh/CodeMirror) ## Usage @@ -147,7 +147,7 @@ We have one task to serve them all ! grunt serve ``` -It's equal to run separately: +It's equal to run separately: * `grunt connect:server` : giving you a development server at [http://localhost:8000/](http://localhost:8000/). diff --git a/bower.json b/bower.json index ca66112..c99b25f 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "angular-ui-codemirror", - "version": "0.1.7", + "version": "0.2.0", "description": "This directive allows you to add CodeMirror to your textarea elements.", "author": "https://github.com/angular-ui/ui-codemirror/contributors", "license": "MIT", diff --git a/package.json b/package.json index 874e27c..c6b4d4b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "angular-ui-codemirror", - "version": "0.1.7", + "version": "0.2.0", "description": "This directive allows you to add CodeMirror to your textarea elements.", "author": "https://github.com/angular-ui/ui-codemirror/contributors", "license": "MIT",