Skip to content

Commit

Permalink
Release 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ebidel committed Apr 18, 2014
1 parent ed716d5 commit 50ad332
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 18 deletions.
27 changes: 16 additions & 11 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,17 +84,6 @@ module.exports = function(grunt) {
}
},

// copy: {
// main: {
// files: [{
// expand: true,
// cwd: '_site/', // set base for src matches.
// src: ['**'], // includes files and subdirs of cwd.
// dest: '<%= jekyllConfig.publish_dir %>'
// }]
// }
// }

vulcanize: {
options: {
excludes: {
Expand All @@ -121,6 +110,20 @@ module.exports = function(grunt) {
spawn: false,
},
},
},

appengine: {
options: {
manageFlags: {
oauth2: true
},
runFlags: {
port: 3000
}
},
frontend: {
root: '.'
}
}

});
Expand All @@ -133,6 +136,8 @@ module.exports = function(grunt) {

grunt.registerTask('apidocs', ['yuidoc:polymeruielements']);

grunt.registerTask('serve', ['appengine:run:frontend']);

// Task to build docs.
grunt.registerTask('docs', ['apidocs', 'vulcanize:build', 'jekyll:build']);

Expand Down
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ kramdown:
# Site globals used throughout docs.
load_platform: true
project_title: Polymer
latest_version: 0.2.2
latest_version: 0.2.3
add_permalinks: true # adds permalinks to heading tags.
load_disqus: true
2 changes: 1 addition & 1 deletion app.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
application: polymer-project
version: 20140411
version: 20140418
runtime: python27
api_version: 1
threadsafe: yes
Expand Down
2 changes: 1 addition & 1 deletion docs/start/reusableelements.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,5 +148,5 @@ This allows us to automatically group your documentation by attributes, methods

##Where to go next?

Now that you’ve published your {{site.project_title}} element to GitHub, you may be interested in learning how to [distribute your element using Bower](http://www.polymer-project.org/distributing-components-with-bower.html).
Now that you’ve published your {{site.project_title}} element to GitHub, you may be interested in learning how to [distribute your element using Bower](/articles/distributing-components-with-bower.html).

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"grunt-contrib-yuidoc": "*",
"grunt-vulcanize": "*",
"load-grunt-tasks": "~0.2.1",
"grunt-contrib-watch": "~0.6.0"
"grunt-contrib-watch": "~0.6.0",
"grunt-appengine": "~0.1.5"
}
}
2 changes: 1 addition & 1 deletion polymer-all/labs
Submodule labs updated from 2989db to 88acc8
2 changes: 1 addition & 1 deletion polymer-all/tools
7 changes: 6 additions & 1 deletion resources/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,16 @@ including polyfill repos, tools, projects, and UI elements.
#### Shadow DOM
{% endcomment %}

## v0.2.3 {#r2014-04-18}

Released 2014-04-18. See the [full list of changes](https://github.com/Polymer/polymer/releases/tag/0.2.3).

---

## v0.2.2 {#r2014-03-31}

Released 2014-03-31. See the [full list of changes](https://github.com/Polymer/polymer/releases/tag/0.2.2).


---

## v0.2.1 {#r2014-03-07}
Expand Down

0 comments on commit 50ad332

Please sign in to comment.