Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinso committed Nov 27, 2024
1 parent 8791d2e commit 4164945
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.0/examples/cram-vcf.html)***
***[Alignments](https://igv.org/web/release/3.1.1/examples/cram-vcf.html)***

***[Interactions](https://igv.org/web/release/3.1.0/examples/interact.html)***
***[Interactions](https://igv.org/web/release/3.1.1/examples/interact.html)***

***[Copy number](https://igv.org/web/release/3.1.0/examples/copyNumber.html)***
***[Copy number](https://igv.org/web/release/3.1.1/examples/copyNumber.html)***

***[Multiple regions](https://igv.org/web/release/3.1.0/examples/multi-locus.html)***
***[Multiple regions](https://igv.org/web/release/3.1.1/examples/multi-locus.html)***

***[Mutation Annotation Format (MAF)](https://igv.org/web/release/3.1.0/examples/maf-tcga.html)***
***[Mutation Annotation Format (MAF)](https://igv.org/web/release/3.1.1/examples/maf-tcga.html)***

***[Variant color options](https://igv.org/web/release/3.1.0/examples/variant-colors.html)***
***[Variant color options](https://igv.org/web/release/3.1.1/examples/variant-colors.html)***

***[More](https://igv.org/web/release/3.1.0/examples/)***
***[More](https://igv.org/web/release/3.1.1/examples/)***


# Quickstart
Expand All @@ -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/[email protected].0/dist/](https://cdn.jsdelivr.net/npm/[email protected].0/dist/).
can be downloaded from [https://cdn.jsdelivr.net/npm/[email protected].1/dist/](https://cdn.jsdelivr.net/npm/[email protected].1/dist/).

To import igv as an ES6 module

```javascript
import igv from "https://cdn.jsdelivr.net/npm/[email protected].0/dist/igv.esm.min.js"
import igv from "https://cdn.jsdelivr.net/npm/[email protected].1/dist/igv.esm.min.js"
```

Or as a script include (defines the "igv" global)

```html
<script src="https://cdn.jsdelivr.net/npm/[email protected].0/dist/igv.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/igv.min.js"></script>
```

Alternatively you can install with npm
Expand Down
2 changes: 1 addition & 1 deletion js/embedCss.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/version.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const _version = "3.1.0"
const _version = "3.1.1"
function version() {
return _version
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "igv",
"version": "3.1.0",
"version": "3.1.1",
"main": "dist/igv.esm.js",
"browser": "dist/igv.js",
"module": "dist/igv.esm.js",
Expand Down

0 comments on commit 4164945

Please sign in to comment.