diff --git a/.gitignore b/.gitignore index e35bc0419..fe0c9ed67 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,4 @@ igv.css.map /dev/oauth/oauthConfigPrivate.js /encode/ /dev/issues/globus_bigwig.html +/dev/oauth/blank.html diff --git a/README.md b/README.md index e9b1200e4..59eda3501 100644 --- a/README.md +++ b/README.md @@ -18,19 +18,19 @@ Below are examples and a quickstart guide. See the [Wiki](https://github.com/ig # Examples -***[Alignments](https://igv.org/web/release/2.15.9/examples/cram-vcf.html)*** +***[Alignments](https://igv.org/web/release/2.15.10/examples/cram-vcf.html)*** -***[Interactions](https://igv.org/web/release/2.15.9/examples/interact.html)*** +***[Interactions](https://igv.org/web/release/2.15.10/examples/interact.html)*** -***[Copy number](https://igv.org/web/release/2.15.9/examples/copyNumber.html)*** +***[Copy number](https://igv.org/web/release/2.15.10/examples/copyNumber.html)*** -***[Multiple regions](https://igv.org/web/release/2.15.9/examples/multi-locus.html)*** +***[Multiple regions](https://igv.org/web/release/2.15.10/examples/multi-locus.html)*** -***[Mutation Annotation Format (MAF)](https://igv.org/web/release/2.15.9/examples/maf-tcga.html)*** +***[Mutation Annotation Format (MAF)](https://igv.org/web/release/2.15.10/examples/maf-tcga.html)*** -***[Variant color options](https://igv.org/web/release/2.15.9/examples/variant-colors.html)*** +***[Variant color options](https://igv.org/web/release/2.15.10/examples/variant-colors.html)*** -***[More](https://igv.org/web/release/2.15.9/examples/)*** +***[More](https://igv.org/web/release/2.15.10/examples/)*** # Quickstart @@ -39,18 +39,18 @@ Below are examples and a quickstart guide. See the [Wiki](https://github.com/ig igv.js consists of a single javascript file with no external dependencies. Pre-built files for script include, AMD, or CJS module systems (igv.min.js) and an ES6 module (igv.esm.min.js) -can be downloaded from [https://cdn.jsdelivr.net/npm/igv@2.15.9/dist/](https://cdn.jsdelivr.net/npm/igv@2.15.9/dist/). +can be downloaded from [https://cdn.jsdelivr.net/npm/igv@2.15.10/dist/](https://cdn.jsdelivr.net/npm/igv@2.15.10/dist/). To import igv as an ES6 module ```javascript -import igv from "https://cdn.jsdelivr.net/npm/igv@2.15.9/dist/igv.esm.min.js" +import igv from "https://cdn.jsdelivr.net/npm/igv@2.15.10/dist/igv.esm.min.js" ``` Or as a script include (defines the "igv" global) ```html - + ``` Alternatively you can install with npm diff --git a/js/version.js b/js/version.js index 01acbf4e3..958593cc8 100644 --- a/js/version.js +++ b/js/version.js @@ -1,4 +1,4 @@ -const _version = "2.15.9" +const _version = "2.15.10" function version() { return _version } diff --git a/package.json b/package.json index a3f37cccd..76f764d29 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "igv", - "version": "2.15.9", + "version": "2.15.10", "main": "dist/igv.esm.js", "browser": "dist/igv.js", "module": "dist/igv.esm.js", @@ -53,7 +53,7 @@ "eslint": "^6.4.0", "hdf5-indexed-reader": "github:jrobinso/hdf5-indexed-reader#v0.5.2", "igv-ui": "github:igvteam/igv-ui#v1.5.0", - "igv-utils": "github:igvteam/igv-utils#v1.4.7", + "igv-utils": "github:igvteam/igv-utils#v1.4.8", "mocha": "^10.2.0", "rollup": "^2.66.0", "rollup-plugin-copy": "^3.3.0",