]> source.dussan.org Git - vaadin-core.git/commitdiff
replacing version number with "latest" pr4/r7
authorManolo Carrasco <manolo@apache.org>
Thu, 17 Sep 2015 19:22:27 +0000 (21:22 +0200)
committerManolo Carrasco <manolo@apache.org>
Thu, 17 Sep 2015 19:22:27 +0000 (21:22 +0200)
README.md
tasks/cdn.js

index e715cac882530324494ef232ae39a73116edd222..cd3bf06370c3fadcf267efd5407964e4e5a9dc9e 100644 (file)
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ View live examples and source code side-by-side for individual custom elements.
 
 | Component | Description |
 | --- | --- |
-| [<**vaadin-grid**>](https://github.com/vaadin/vaadin-grid) &middot; [Examples](https://cdn.vaadin.com/vaadin-components/0.3.0-snapshot/vaadin-grid/demo/) &middot; [API](https://cdn.vaadin.com/vaadin-components/0.3.0-snapshot/vaadin-components/apidoc/#vaadin-grid) | Data grid for showing large amounts of tabular data. |
+| [<**vaadin-grid**>](https://github.com/vaadin/vaadin-grid) &middot; [Examples](https://cdn.vaadin.com/vaadin-components/latest/vaadin-grid/demo/) &middot; [API](https://cdn.vaadin.com/vaadin-components/latest/vaadin-components/apidoc/#vaadin-grid) | Data grid for showing large amounts of tabular data. |
 
 
 ### Quickstart
@@ -54,7 +54,7 @@ We offer three ways to use Vaadin Components in your project: Bower, CDN and ZIP
 
  You can use Vaadin Components from CDN (see example below). This is especially convenient for services like JSFiddle, Codepen.io, etc.
 
-   `https://cdn.vaadin.com/vaadin-components/0.3.0-beta7/vaadin-grid/vaadin-grid.html`
+   `https://cdn.vaadin.com/vaadin-components/latest/vaadin-grid/vaadin-grid.html`
 
  _*Note*: that we have a fragment in the url with the version to use, so you could for instance replace it with the snapshot version_
 
@@ -79,8 +79,8 @@ We offer three ways to use Vaadin Components in your project: Bower, CDN and ZIP
     <!-- Import Web Component polyfills and the components that you want -->
 
     <!-- CDN -->
-    <script src="https://cdn.vaadin.com/vaadin-components/0.3.0-beta7/webcomponentsjs/webcomponents-lite.js"></script>
-    <link href="https://cdn.vaadin.com/vaadin-components/0.3.0-beta7/vaadin-grid/vaadin-grid.html" rel="import">
+    <script src="https://cdn.vaadin.com/vaadin-components/latest/webcomponentsjs/webcomponents-lite.js"></script>
+    <link href="https://cdn.vaadin.com/vaadin-components/latest/vaadin-grid/vaadin-grid.html" rel="import">
 
     <!-- Bower -->
     <!-- <script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
index d81eef7e53ca268cea8c098c8a73a59d0863d6f2..01359f2ac1820032106c0bf694e2f19f5706f07d 100644 (file)
@@ -32,7 +32,7 @@ gulp.task('cdn:stage-bower_components', function() {
 
 gulp.task('cdn:stage-vaadin-components', function() {
   return gulp.src(['README.md', 'LICENSE.html', 'vaadin-components.html', 'demo/*', 'apidoc/*'], {base:"."})
-    .pipe(replace('https://cdn.vaadin.com/vaadin-components/0.3.0-snapshot/', '../../'))
+    .pipe(replace('https://cdn.vaadin.com/vaadin-components/latest/', '../../'))
     .pipe(gulp.dest(stagingPath + "/vaadin-components"));
 });