From 851a85b8ca440719168140eddc5fa45d5fdb0e32 Mon Sep 17 00:00:00 2001 From: Jim Robinson Date: Sat, 15 Aug 2020 21:28:51 -0700 Subject: [PATCH] bump version --- README.md | 16 ++++++++-------- js/version.js | 2 +- package.json | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 51a01045a..cd267a9b8 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,13 @@ See the [Wiki](https://github.com/igvteam/igv.js/wiki) for more documentation. # Examples -***[Alignments](https://igv.org/web/release/2.6.5/examples/cram.html)*** +***[Alignments](https://igv.org/web/release/2.6.6/examples/cram.html)*** -***[Copy number](https://igv.org/web/release/2.6.5/examples/copyNumber.html)*** +***[Copy number](https://igv.org/web/release/2.6.6/examples/copyNumber.html)*** -***[Multiple regions](https://igv.org/web/release/2.6.5/examples/multi-locus.html)*** +***[Multiple regions](https://igv.org/web/release/2.6.6/examples/multi-locus.html)*** -***[More](https://igv.org/web/release/2.6.5/examples/)*** +***[More](https://igv.org/web/release/2.6.6/examples/)*** # Quickstart @@ -30,11 +30,11 @@ See the [Wiki](https://github.com/igvteam/igv.js/wiki) for more documentation. igv.js consists of a single javascript file with no external dependencies. To link directly to the current release copy this snippet ```html - + ``` Pre-built files for ES5 (igv.min.js) and ES6 (igv.esm.min.js) -can be downloaded from [https://cdn.jsdelivr.net/npm/igv@2.6.5/dist/](https://cdn.jsdelivr.net/npm/igv@2.6.5/dist/). +can be downloaded from [https://cdn.jsdelivr.net/npm/igv@2.6.6/dist/](https://cdn.jsdelivr.net/npm/igv@2.6.6/dist/). Alternatively you can install with npm @@ -48,11 +48,11 @@ To use igv.js include it with a script tag ***or*** import it as a requirejs module -```requirejs(['igv.min'], function (igv) {...}``` *(see [examples/igv-require.html](https://igv.org/web/release/2.6.5/examples/igv-require.html))* +```requirejs(['igv.min'], function (igv) {...}``` *(see [examples/igv-require.html](https://igv.org/web/release/2.6.6/examples/igv-require.html))* ***or*** import it as an es6 module -```import igv from 'igv.esm.min.js'``` *(see [examples/igv-esm.html](https://igv.org/web/release/2.6.5/examples/igv-esm.html))* +```import igv from 'igv.esm.min.js'``` *(see [examples/igv-esm.html](https://igv.org/web/release/2.6.6/examples/igv-esm.html))* diff --git a/js/version.js b/js/version.js index 0b7327f67..321351e6b 100644 --- a/js/version.js +++ b/js/version.js @@ -1,4 +1,4 @@ -const _version = "2.6.5" +const _version = "2.6.6" function version() { return _version; } diff --git a/package.json b/package.json index 13e3f42a7..b6bec449f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "igv", - "version": "2.6.5", + "version": "2.6.6", "description": "Embeddable genomic visualization component based on the Integrative Genomics Viewer", "main": "dist/igv.esm.js", "browser": "dist/igv.js",