Skip to content

Commit

Permalink
v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
appsforartists committed Dec 13, 2018
1 parent 8da954f commit d037e12
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog #

## v2.0.1 (2018-12-12) ##
### Changes ###
- Bundled version is now exported as `unpkg` rather than `browser` in `package.json`. This should help prevent dependencies from being duplicated when bundled downstream.

## v2.0.0 (2018-12-10) ##
### Changes ###
- Replaced `main` with `module` in `package.json`. Both the `browser` and the `module` bundles use ES Modules. We no longer distribute a CommonJS format.
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Indefinite Observable #

<!-- TODO: update version number before releasing, here and in the script tag -->
[![Current version:](https://img.shields.io/badge/v2.0.0:-222222.svg?logo=npm)](https://www.npmjs.com/package/indefinite-observable/v/2.0.0)
[![Test status](https://img.shields.io/circleci/project/github/material-motion/indefinite-observable-js/stable.svg?logo=circleci&label=Tests)](https://circleci.com/gh/material-motion/indefinite-observable-js/45)
[![Code coverage](https://img.shields.io/codecov/c/github/material-motion/indefinite-observable-js/stable.svg?logo=codecov&logoColor=white&label=Coverage)](https://codecov.io/gh/material-motion/indefinite-observable-js/tree/0ed0d8e97fda9e5c87c5a2e1b5a0a6a74a559b83/src)<br />
[![Current version:](https://img.shields.io/badge/v2.0.1:-222222.svg?logo=npm)](https://www.npmjs.com/package/indefinite-observable/v/2.0.1)
[![Test status](https://img.shields.io/circleci/project/github/material-motion/indefinite-observable-js/stable.svg?logo=circleci&label=Tests)](https://circleci.com/gh/material-motion/indefinite-observable-js/48)
[![Code coverage](https://img.shields.io/codecov/c/github/material-motion/indefinite-observable-js/stable.svg?logo=codecov&logoColor=white&label=Coverage)](https://codecov.io/gh/material-motion/indefinite-observable-js/tree/f601df73be779477218f1fcf709b18e6b621de20/src)<br />
[![HEAD:](https://img.shields.io/badge/HEAD:-222222.svg?logo=github&logoColor=white)](https://github.com/material-motion/indefinite-observable-js)
[![Test status](https://img.shields.io/circleci/project/github/material-motion/indefinite-observable-js/develop.svg?logo=circleci&label=Tests)](https://circleci.com/gh/material-motion/indefinite-observable-js/tree/develop)
[![Code coverage](https://img.shields.io/codecov/c/github/material-motion/indefinite-observable-js/develop.svg?logo=codecov&logoColor=white&label=Coverage)](https://codecov.io/gh/material-motion/indefinite-observable-js/branch/develop)
Expand Down Expand Up @@ -57,10 +57,10 @@ yarn add indefinite-observable

or include as a script tag:

```
<script type = "module"
src = "https://ajax.googleapis.com/ajax/libs/indefinite-observable/2.0.0/indefinite-observable.bundle.js"
></script>
```html
<script type = "module">
import { IndefiniteObservable } from "https://ajax.googleapis.com/ajax/libs/indefinite-observable/2.0.1/indefinite-observable.bundle.js"
</script>
```

## Contributing ##
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": "indefinite-observable",
"version": "2.0.0",
"version": "2.0.1",
"scripts": {
"start": "node ./devServer.js",
"clean": "rm -rf ./dist/*; mkdir -p ./dist/",
Expand Down

0 comments on commit d037e12

Please sign in to comment.