Skip to content
This repository has been archived by the owner on May 29, 2023. It is now read-only.

Commit

Permalink
Release/1.0.3 (#9)
Browse files Browse the repository at this point in the history
* chore(release): 1.0.3
  • Loading branch information
vladimirpotekhin committed Jun 4, 2020
1 parent 427f28b commit 092650c
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### 1.0.3 (2020-06-04)

### 1.0.2 (2020-06-04)


### Bug Fixes

* **service:** fix warnings if the observer is not supported ([#7](https://github.com/ng-web-apis/resize-observer/issues/7)) ([427f28b](https://github.com/ng-web-apis/resize-observer/commit/427f28b))

### 1.0.1 (2020-05-16)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ng-web-apis/resize-observer",
"version": "1.0.1",
"version": "1.0.3",
"description": "A library for declarative use of Resize Observer API with Angular",
"keywords": [
"angular",
Expand Down
2 changes: 1 addition & 1 deletion projects/demo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "demo",
"version": "1.0.1",
"version": "1.0.3",
"private": true,
"scripts": {
"ng": "ng",
Expand Down
2 changes: 1 addition & 1 deletion projects/resize-observer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ng-web-apis/resize-observer",
"version": "1.0.1",
"version": "1.0.3",
"peerDependencies": {
"@angular/core": ">=6.0.0",
"@ng-web-apis/common": ">=1.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ describe('Resize Observer token', () => {
it('defined', () => {
expect(service).toBeDefined();
});

it('disconnect', () => {
service.subscribe().unsubscribe();
expect(service).toBeDefined();
});
});

describe('throws when not supported', () => {
Expand Down

0 comments on commit 092650c

Please sign in to comment.