Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinso committed Mar 2, 2021
1 parent 6997a80 commit 6a8eb4a
Show file tree
Hide file tree
Showing 4 changed files with 5,046 additions and 344 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ See the [Wiki](https://github.com/igvteam/igv.js/wiki) for more documentation.

# Examples

***[Alignments](https://igv.org/web/release/2.7.5/examples/cram-vcf.html)***
***[Alignments](https://igv.org/web/release/2.7.6/examples/cram-vcf.html)***

***[Interactions](https://igv.org/web/release/2.7.5/examples/arcs.html)***
***[Interactions](https://igv.org/web/release/2.7.6/examples/arcs.html)***

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

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

***[More](https://igv.org/web/release/2.7.5/examples/)***
***[More](https://igv.org/web/release/2.7.6/examples/)***


# Quickstart
Expand All @@ -33,11 +33,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
<script src="https://cdn.jsdelivr.net/npm/[email protected].5/dist/igv.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].6/dist/igv.min.js"></script>
```

Pre-built files for ES5 (igv.min.js) and ES6 (igv.esm.min.js)
can be downloaded from [https://cdn.jsdelivr.net/npm/[email protected].5/dist/](https://cdn.jsdelivr.net/npm/[email protected].5/dist/).
can be downloaded from [https://cdn.jsdelivr.net/npm/[email protected].6/dist/](https://cdn.jsdelivr.net/npm/[email protected].6/dist/).

Alternatively you can install with npm

Expand All @@ -51,11 +51,11 @@ To use igv.js include it with a script tag

***or*** import it as a requirejs module

```requirejs(['igv.min'], function (igv) {...}``` *(see [examples/igv-require.html](https://igv.org/web/release/2.7.5/examples/igv-require.html))*
```requirejs(['igv.min'], function (igv) {...}``` *(see [examples/igv-require.html](https://igv.org/web/release/2.7.6/examples/igv-require.html))*

***or*** import it as an es6 module

```import igv from 'igv.esm.min.js'``` *(see [examples/igv-esm.html](https://igv.org/web/release/2.7.5/examples/igv-esm.html))*
```import igv from 'igv.esm.min.js'``` *(see [examples/igv-esm.html](https://igv.org/web/release/2.7.6/examples/igv-esm.html))*



Expand Down
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 = "2.7.5"
const _version = "2.7.6"
function version() {
return _version;
}
Expand Down
Loading

0 comments on commit 6a8eb4a

Please sign in to comment.