From be430a76ad2ac402949591de49b7d8eef6d5e3f4 Mon Sep 17 00:00:00 2001
From: jrobinso <933148+jrobinso@users.noreply.github.com>
Date: Mon, 16 Dec 2024 14:51:36 -0800
Subject: [PATCH] bump version
---
README.md | 20 ++++++++++----------
js/version.js | 2 +-
package.json | 2 +-
3 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/README.md b/README.md
index 268ddef3c..128f9253b 100644
--- a/README.md
+++ b/README.md
@@ -18,19 +18,19 @@ Below are examples and a quickstart guide. See the [developer documentation](ht
# Examples
-***[Alignments](https://igv.org/web/release/3.1.1/examples/cram-vcf.html)***
+***[Alignments](https://igv.org/web/release/3.1.2/examples/cram-vcf.html)***
-***[Interactions](https://igv.org/web/release/3.1.1/examples/interact.html)***
+***[Interactions](https://igv.org/web/release/3.1.2/examples/interact.html)***
-***[Copy number](https://igv.org/web/release/3.1.1/examples/copyNumber.html)***
+***[Copy number](https://igv.org/web/release/3.1.2/examples/copyNumber.html)***
-***[Multiple regions](https://igv.org/web/release/3.1.1/examples/multi-locus.html)***
+***[Multiple regions](https://igv.org/web/release/3.1.2/examples/multi-locus.html)***
-***[Mutation Annotation Format (MAF)](https://igv.org/web/release/3.1.1/examples/maf-tcga.html)***
+***[Mutation Annotation Format (MAF)](https://igv.org/web/release/3.1.2/examples/maf-tcga.html)***
-***[Variant color options](https://igv.org/web/release/3.1.1/examples/variant-colors.html)***
+***[Variant color options](https://igv.org/web/release/3.1.2/examples/variant-colors.html)***
-***[More](https://igv.org/web/release/3.1.1/examples/)***
+***[More](https://igv.org/web/release/3.1.2/examples/)***
# Quickstart
@@ -39,18 +39,18 @@ Below are examples and a quickstart guide. See the [developer documentation](ht
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@3.1.1/dist/](https://cdn.jsdelivr.net/npm/igv@3.1.1/dist/).
+can be downloaded from [https://cdn.jsdelivr.net/npm/igv@3.1.2/dist/](https://cdn.jsdelivr.net/npm/igv@3.1.2/dist/).
To import igv as an ES6 module
```javascript
-import igv from "https://cdn.jsdelivr.net/npm/igv@3.1.1/dist/igv.esm.min.js"
+import igv from "https://cdn.jsdelivr.net/npm/igv@3.1.2/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 5fd02948c..38629539e 100644
--- a/js/version.js
+++ b/js/version.js
@@ -1,4 +1,4 @@
-const _version = "3.1.1"
+const _version = "3.1.2"
function version() {
return _version
}
diff --git a/package.json b/package.json
index 20a802d2a..6b62bb298 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "igv",
- "version": "3.1.1",
+ "version": "3.1.2",
"main": "dist/igv.esm.js",
"browser": "dist/igv.js",
"module": "dist/igv.esm.js",