Skip to content

Commit 7adfcdd

Browse files
committed
2.0.6 release commit
1 parent 6c3b81d commit 7adfcdd

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@ npm i active-data --save
1818

1919
#### Or simply download \*.js file
2020

21-
[active-data.js@2.0.4](https://github.com/forceuser/active-data/releases/download/2.0.4/active-data.js)
21+
[active-data.js@2.0.6](https://github.com/forceuser/active-data/releases/download/2.0.6/active-data.js)
2222

23-
[active-data.modern.js@2.0.4](https://github.com/forceuser/active-data/releases/download/2.0.4/active-data.modern.js) *for modern browsers only (see [.browserlistrc](https://github.com/forceuser/active-data/blob/master/.browserslistrc))*
23+
[active-data.modern.js@2.0.6](https://github.com/forceuser/active-data/releases/download/2.0.6/active-data.modern.js) *for modern browsers only (see [.browserlistrc](https://github.com/forceuser/active-data/blob/master/.browserslistrc))*
2424

25-
[active-data.esm.js@2.0.4](https://github.com/forceuser/active-data/releases/download/2.0.4/active-data.esm.js) *import as esm module*
25+
[active-data.esm.js@2.0.6](https://github.com/forceuser/active-data/releases/download/2.0.6/active-data.esm.js) *import as esm module*
2626

2727
#### Or just load from CDN
2828

2929
```html
30-
<script src="//cdn.jsdelivr.net/npm/active-data@2.0.4/dist/active-data.js" integrity="sha512-+AMSIfx43N6XcUrFXYyR+N4OiTbcbY5yhKesJqneFuH8LCznc36BuwolCkT6b/SZr/BJgW1/hyVtrpswsutiNQ==" crossorigin="anonymous">
30+
<script src="//cdn.jsdelivr.net/npm/active-data@2.0.6/dist/active-data.js" integrity="sha512-+AMSIfx43N6XcUrFXYyR+N4OiTbcbY5yhKesJqneFuH8LCznc36BuwolCkT6b/SZr/BJgW1/hyVtrpswsutiNQ==" crossorigin="anonymous">
3131
</script>
3232
```
3333

3434
*if you need only modern browsers then use script below:*
3535

3636
```html
37-
<script src="//cdn.jsdelivr.net/npm/active-data@2.0.4/dist/active-data.modern.js" integrity="sha512-we+scNmK8I2rWuKEBBEKWUDIHGtaxrHYV/6BgKzGnAdgoPeznFOqx/kRxb0nWkRfIKTJfh2VPrrDMBjNZNsYTw==" crossorigin="anonymous">
37+
<script src="//cdn.jsdelivr.net/npm/active-data@2.0.6/dist/active-data.modern.js" integrity="sha512-we+scNmK8I2rWuKEBBEKWUDIHGtaxrHYV/6BgKzGnAdgoPeznFOqx/kRxb0nWkRfIKTJfh2VPrrDMBjNZNsYTw==" crossorigin="anonymous">
3838
</script>
3939
```
4040

@@ -52,7 +52,7 @@ And then use **activeData** as global variable
5252

5353
```html
5454
<script type="module">
55-
import {default as activeData, observable, reaction} from "//cdn.jsdelivr.net/npm/active-data@2.0.4/dist/active-data.esm.js";
55+
import {default as activeData, observable, reaction} from "//cdn.jsdelivr.net/npm/active-data@2.0.6/dist/active-data.esm.js";
5656
5757
data = observable({c: 1});
5858
reaction(() => {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "active-data",
3-
"version": "2.0.4",
3+
"version": "2.0.6",
44
"description": "Reactive data manager, inspired by MobX. Automatically detects associated data and perform updates to your views or everything dependent on that data when it changes. Implemented with js Proxy objects",
55
"main": "dist/active-data.js",
66
"module": "dist/active-data.esm.mjs",

0 commit comments

Comments
 (0)