diff --git a/CHANGELOG.md b/CHANGELOG.md index 54d617074b..bebb70bdef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ + +# [6.1.0](https://github.com/ReactiveX/RxJS/compare/6.0.0...6.1.0) (2018-05-03) + + +### Bug Fixes + +* **audit:** will not crash if duration is synchronous ([#3608](https://github.com/ReactiveX/RxJS/issues/3608)) ([76b7e27](https://github.com/ReactiveX/RxJS/commit/76b7e27)), closes [#2743](https://github.com/ReactiveX/RxJS/issues/2743) +* **delay:** fix memory leak ([#3605](https://github.com/ReactiveX/RxJS/issues/3605)) ([96f05b0](https://github.com/ReactiveX/RxJS/commit/96f05b0)) + + +### Features + +* **isObservable:** a new method for checking to see if an object is an RxJS Observable ([edb33e5](https://github.com/ReactiveX/RxJS/commit/edb33e5)) + + + # [6.0.0](https://github.com/ReactiveX/RxJS/compare/6.0.0-uncanny-rc.7...v6.0.0) (2018-04-24) diff --git a/compat/package.json b/compat/package.json index a5a0a5c824..45527fa293 100644 --- a/compat/package.json +++ b/compat/package.json @@ -1,6 +1,6 @@ { "name": "rxjs-compat", - "version": "6.0.0", + "version": "6.1.0", "main": "./Rx.js", "typings": "./Rx.d.ts" } diff --git a/package.json b/package.json index a28087c1d3..5f7fe4d35e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@reactivex/rxjs", - "version": "6.0.0", + "version": "6.1.0", "description": "Reactive Extensions for modern JavaScript", "main": "index.js", "sideEffects": false,