From 5efbb60b32256d9c1fb5415433cdf83d85152b7f Mon Sep 17 00:00:00 2001 From: Dan Vanderkam Date: Wed, 3 Dec 2014 16:56:04 -0500 Subject: [PATCH] Bump versions & add release notes for 1.1.0 --- README | 2 +- bower.json | 2 +- docs/versions.html | 26 ++++++++++++++++++++++++-- dygraph.js | 2 +- generate-download.py | 2 +- package.json | 2 +- releases.json | 7 +++++++ 7 files changed, 36 insertions(+), 7 deletions(-) diff --git a/README b/README index cfd0e8c..e7fc266 100644 --- 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/ diff --git a/bower.json b/bower.json index 2b21425..93e2702 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "dygraphs", - "version": "v1.0.1+bower", + "version": "v1.1.0", "main": "dygraph-combined.js", "ignore": [ "Makefile", diff --git a/docs/versions.html b/docs/versions.html index 90e0ace..e336eea 100644 --- a/docs/versions.html +++ b/docs/versions.html @@ -7,6 +7,9 @@ .versions td { vertical-align: top; } + td.notes { + padding-bottom: 20px; + } .versions td:first-child { text-align: right; padding-right: 20px; @@ -25,12 +28,31 @@ + + + + - + - +
1.1.0

2014-12-03

+ Highlights include: +
    +
  • dygraphs is now "retina" compatible. +
  • Dramatically improved performance for filled charts (i.e. fillGraph) +
  • More sensible date ticks: "Jan 08"→"Jan 2008", "29Jan"→"29 Jan" +
  • Using a non-existent option now throws (w/ dygraph-combined-dev.js) +
  • x-axis log scales +
  • The labelsUTC option forces UTC formatting for all labels. +
  • The new DataHandler system allows for more flexibility in data loading. +
  • "this" is set to the dygraph in all callbacks. +
  • dygraphs has shrunk, because we moved some stuff into "extras" (133kb→122kb) +
+ + This will be the last major release to support browsers without a native <canvas> implementation. See blog post for more details. +
1.0.1

2013-08-29

Minor bug fixes and updates to web site.Minor bug fixes and updates to web site.
1.0.0

2013-08-14

Initial Release. See blog post.Initial Release. See blog post.
diff --git a/dygraph.js b/dygraph.js index fe56d3d..6a57d78 100644 --- a/dygraph.js +++ b/dygraph.js @@ -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 + "]"; }; diff --git a/generate-download.py b/generate-download.py index 4c32223..2d2dd48 100755 --- a/generate-download.py +++ b/generate-download.py @@ -63,7 +63,7 @@ print '''
$ bower install dygraphs
 # dygraphs is now in bower_components/dygraphs/dygraph-combined.js
-

For dev (non-minified) JS, see dygraph-dev.js on github. +

Most distributions include a source map. For non-concatenated JS, see dygraph-dev.js on github.

To generate your own minified JS, run:

diff --git a/package.json b/package.json index 5bd9c98..84948e9 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/releases.json b/releases.json index 8636b9b..76b58b7 100644 --- a/releases.json +++ b/releases.json @@ -1,5 +1,12 @@ [ { + "version": "1.1.0", + "files": [ + "dygraph-combined.js", + "dygraph-combined-dev.js" + ] + }, + { "version": "1.0.1", "files": [ "dygraph-combined.js" -- 2.7.4