From f541fb77f3d2983c4a102ab4af21b3bc5928c50a Mon Sep 17 00:00:00 2001 From: jrobinso Date: Thu, 15 Jul 2021 11:18:40 -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 42af2e556..53c028e2c 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.9.0/examples/cram-vcf.html)*** +***[Alignments](https://igv.org/web/release/2.9.1/examples/cram-vcf.html)*** -***[Interactions](https://igv.org/web/release/2.9.0/examples/arcs.html)*** +***[Interactions](https://igv.org/web/release/2.9.1/examples/arcs.html)*** -***[Copy number](https://igv.org/web/release/2.9.0/examples/copyNumber.html)*** +***[Copy number](https://igv.org/web/release/2.9.1/examples/copyNumber.html)*** -***[Multiple regions](https://igv.org/web/release/2.9.0/examples/multi-locus.html)*** +***[Multiple regions](https://igv.org/web/release/2.9.1/examples/multi-locus.html)*** -***[Mutation Annotation Format (MAF)](https://igv.org/web/release/2.9.0/examples/maf-tcga.html)*** +***[Mutation Annotation Format (MAF)](https://igv.org/web/release/2.9.1/examples/maf-tcga.html)*** -***[More](https://igv.org/web/release/2.9.0/examples/)*** +***[More](https://igv.org/web/release/2.9.1/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.9.0/dist/](https://cdn.jsdelivr.net/npm/igv@2.9.0/dist/). +can be downloaded from [https://cdn.jsdelivr.net/npm/igv@2.9.1/dist/](https://cdn.jsdelivr.net/npm/igv@2.9.1/dist/). Alternatively you can install with npm diff --git a/js/version.js b/js/version.js index 4ca78008c..b0a12ff0b 100644 --- a/js/version.js +++ b/js/version.js @@ -1,4 +1,4 @@ -const _version = "2.9.0" +const _version = "2.9.1" function version() { return _version; } diff --git a/package.json b/package.json index 097bfd424..fafe13839 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "igv", - "version": "2.9.0", + "version": "2.9.1", "main": "dist/igv.esm.js", "browser": "dist/igv.js", "module": "dist/igv.esm.js",