diff --git a/README.md b/README.md index 5006ed6e0..b6bdbf28b 100644 --- a/README.md +++ b/README.md @@ -16,17 +16,17 @@ See the [Wiki](https://github.com/igvteam/igv.js/wiki) for more documentation. # Examples -***[Alignments](https://igv.org/web/release/2.8.2/examples/cram-vcf.html)*** +***[Alignments](https://igv.org/web/release/2.8.3/examples/cram-vcf.html)*** -***[Interactions](https://igv.org/web/release/2.8.2/examples/arcs.html)*** +***[Interactions](https://igv.org/web/release/2.8.3/examples/arcs.html)*** -***[Copy number](https://igv.org/web/release/2.8.2/examples/copyNumber.html)*** +***[Copy number](https://igv.org/web/release/2.8.3/examples/copyNumber.html)*** -***[Multiple regions](https://igv.org/web/release/2.8.2/examples/multi-locus.html)*** +***[Multiple regions](https://igv.org/web/release/2.8.3/examples/multi-locus.html)*** -***[Mutation Annotation Format (MAF)](https://igv.org/web/release/2.8.2/examples/maf-tcga.html)*** +***[Mutation Annotation Format (MAF)](https://igv.org/web/release/2.8.3/examples/maf-tcga.html)*** -***[More](https://igv.org/web/release/2.8.2/examples/)*** +***[More](https://igv.org/web/release/2.8.3/examples/)*** # Quickstart @@ -35,11 +35,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.8.2/dist/](https://cdn.jsdelivr.net/npm/igv@2.8.2/dist/). +can be downloaded from [https://cdn.jsdelivr.net/npm/igv@2.8.3/dist/](https://cdn.jsdelivr.net/npm/igv@2.8.3/dist/). Alternatively you can install with npm diff --git a/js/version.js b/js/version.js index 2d4358c6a..34e27dcb9 100644 --- a/js/version.js +++ b/js/version.js @@ -1,4 +1,4 @@ -const _version = "2.8.2" +const _version = "2.8.3" function version() { return _version; } diff --git a/package.json b/package.json index f93827640..b53d80cce 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "igv", - "version": "2.8.2", + "version": "2.8.3", "main": "dist/igv.esm.js", "browser": "dist/igv.js", "module": "dist/igv.esm.js", @@ -61,7 +61,7 @@ "xmldom": "^0.5.0" }, "dependencies": { - "igv-ui": "git+https://github.com/igvteam/igv-ui.git#v1.1.5", + "igv-ui": "git+https://github.com/igvteam/igv-ui.git#v1.1.6", "igv-utils": "git+https://github.com/igvteam/igv-utils.git#v1.2.7" } }