Bump versions & add release notes for 1.1.0
authorDan Vanderkam <danvdk@gmail.com>
Wed, 3 Dec 2014 21:56:04 +0000 (16:56 -0500)
committerDan Vanderkam <danvdk@gmail.com>
Wed, 3 Dec 2014 21:59:02 +0000 (16:59 -0500)
README
bower.json
docs/versions.html
dygraph.js
generate-download.py
package.json
releases.json

diff --git a/README b/README
index cfd0e8c..e7fc266 100644 (file)
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
 dygraphs JavaScript charting library
-Version 1.0.1
+Version 1.1.0
 Copyright (c) 2006-, Dan Vanderkam.
 
 Documentation: http://dygraphs.com/
index 2b21425..93e2702 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "dygraphs",
-  "version": "v1.0.1+bower",
+  "version": "v1.1.0",
   "main": "dygraph-combined.js",
   "ignore": [
     "Makefile",
index 90e0ace..e336eea 100644 (file)
@@ -7,6 +7,9 @@
   .versions td {
     vertical-align: top;
   }
+  td.notes {
+    padding-bottom: 20px;
+  }
   .versions td:first-child {
     text-align: right;
     padding-right: 20px;
 
 <table class="versions">
   <tr>
+    <td>1.1.0<p class="date">2014-12-03</p></td>
+    <td class="notes">
+      Highlights include:
+      <ul>
+        <li>dygraphs is now "retina" compatible.
+        <li>Dramatically improved performance for filled charts (i.e. fillGraph)
+        <li>More sensible date ticks: "Jan 08"→"Jan 2008", "29Jan"→"29 Jan"
+        <li>Using a non-existent option now throws (w/ dygraph-combined-dev.js)
+        <li>x-axis log scales
+        <li>The <code>labelsUTC</code> option forces UTC formatting for all labels.
+        <li>The new DataHandler system allows for more flexibility in data loading.
+        <li>"this" is set to the dygraph in all callbacks.
+        <li>dygraphs has shrunk, because we moved some stuff into "extras" (133kb→122kb)
+      </ul>
+            
+      This will be the last major release to support browsers without a native &lt;canvas&gt; implementation. See <a href="http://blog.dygraphs.com/2014/12/dygraphs-110.html">blog post</a> for more details.
+    </td>
+  </tr>
+  <tr>
     <td>1.0.1<p class="date">2013-08-29</p></td>
-    <td>Minor bug fixes and updates to web site.</td>
+    <td class="notes">Minor bug fixes and updates to web site.</td>
   </tr>
   <tr>
     <td>1.0.0<p class="date">2013-08-14</p></td>
-    <td>Initial Release. See <a href="http://blog.dygraphs.com/2013/08/announcing-dygraphs-100.html">blog post</a>.</td>
+    <td class="notes">Initial Release. See <a href="http://blog.dygraphs.com/2013/08/announcing-dygraphs-100.html">blog post</a>.</td>
   </tr>
 </table>
 
index fe56d3d..6a57d78 100644 (file)
@@ -83,7 +83,7 @@ var Dygraph = function(div, data, opts, opt_fourth_param) {
 };
 
 Dygraph.NAME = "Dygraph";
-Dygraph.VERSION = "1.0.1";
+Dygraph.VERSION = "1.1.0";
 Dygraph.__repr__ = function() {
   return "[" + Dygraph.NAME + " " + Dygraph.VERSION + "]";
 };
index 4c32223..2d2dd48 100755 (executable)
@@ -63,7 +63,7 @@ print '''
 <pre>$ bower install dygraphs
 # dygraphs is now in bower_components/dygraphs/dygraph-combined.js</pre>
 
-<p>For dev (non-minified) JS, see <a href="https://github.com/danvk/dygraphs/blob/master/dygraph-dev.js">dygraph-dev.js</a> on <a href="https://github.com/danvk/dygraphs/">github</a>.</a>
+<p>Most distributions include a source map. For non-concatenated JS, see <a href="https://github.com/danvk/dygraphs/blob/master/dygraph-dev.js">dygraph-dev.js</a> on <a href="https://github.com/danvk/dygraphs/">github</a>.</a>
 
 <p>To generate your own minified JS, run:</p>
 
index 5bd9c98..84948e9 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "dygraphs",
-  "version": "1.0.1",
+  "version": "1.1.0",
   "description": "dygraphs is a fast, flexible open source JavaScript charting library.",
   "main": "dygraph.js",
   "directories": {
index 8636b9b..76b58b7 100644 (file)
@@ -1,5 +1,12 @@
 [
   {
+    "version": "1.1.0",
+    "files": [
+      "dygraph-combined.js",
+      "dygraph-combined-dev.js"
+    ]
+  },
+  {
     "version": "1.0.1",
     "files": [
       "dygraph-combined.js"