From a0cd1fb48aefd581e35502d848f031985fda841e Mon Sep 17 00:00:00 2001 From: Jim Robinson Date: Fri, 27 Sep 2019 17:01:36 -0700 Subject: [PATCH] update versions --- README.md | 16 ++++++++-------- package.json | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 3eedb1b72..9d301d82b 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.2.17/examples/cram.html)*** +***[Alignments](https://igv.org/web/release/2.3.0/examples/cram.html)*** -***[Copy number](https://igv.org/web/release/2.2.17/examples/copyNumber.html)*** +***[Copy number](https://igv.org/web/release/2.3.0/examples/copyNumber.html)*** -***[Multiple regions](https://igv.org/web/release/2.2.17/examples/multi-locus.html)*** +***[Multiple regions](https://igv.org/web/release/2.3.0/examples/multi-locus.html)*** -***[More](https://igv.org/web/release/2.2.17/examples/)*** +***[More](https://igv.org/web/release/2.3.0/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.2.17/dist/](https://cdn.jsdelivr.net/npm/igv@2.2.17/dist/). +can be downloaded from [https://cdn.jsdelivr.net/npm/igv@2.3.0/dist/](https://cdn.jsdelivr.net/npm/igv@2.3.0/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.2.17/examples/igv-require.html))* +```requirejs(['igv.min'], function (igv) {...}``` *(see [examples/igv-require.html](https://igv.org/web/release/2.3.0/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.2.17/examples/igv-esm.html))* +```import igv from 'igv.esm.min.js'``` *(see [examples/igv-esm.html](https://igv.org/web/release/2.3.0/examples/igv-esm.html))* diff --git a/package.json b/package.json index e523d02e7..95f6acced 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "igv", - "version": "2.3.0-rc5", + "version": "2.3.0", "description": "Embeddable genomic visualization component based on the Integrative Genomics Viewer", "main": "dist/igv.esm.js", "browser": "dist/igv.js",