Skip to content

Commit 2122b22

Browse files
sqlProvidersqlProvider
sqlProvider
authored and
sqlProvider
committed
[Fixed #7] created multiple pubsub service fix on v4
1 parent 6c7b6e5 commit 2122b22

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## Next v4.0.1
2+
- Fixed the issue that created multiple pubsub services (#7).
3+
14
## Next v4.0.0
25
- Only version changed for anyone using Angular 4.0.0
36

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular2-pubsub",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "Pub/Sub service for Angular 2",
55
"main": "./umd/angular2-pubsub.js",
66
"module": "./esm/src/index.js",

src/angular2-pubsub.module.ts

-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
import { PubSubService } from './angular2-pubsub.service';
22
import { ModuleWithProviders, NgModule } from '@angular/core';
33

4-
@NgModule({
5-
providers: [
6-
PubSubService
7-
]
8-
})
94
export class PubSubModule {
105
public static forRoot(): ModuleWithProviders {
116
return {

0 commit comments

Comments
 (0)