We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c7b6e5 commit 2122b22Copy full SHA for 2122b22
3 files changed
CHANGELOG.md
@@ -1,3 +1,6 @@
1
+## Next v4.0.1
2
+ - Fixed the issue that created multiple pubsub services (#7).
3
+
4
## Next v4.0.0
5
- Only version changed for anyone using Angular 4.0.0
6
package.json
@@ -1,6 +1,6 @@
{
"name": "angular2-pubsub",
- "version": "4.0.0",
+ "version": "4.0.1",
"description": "Pub/Sub service for Angular 2",
"main": "./umd/angular2-pubsub.js",
"module": "./esm/src/index.js",
src/angular2-pubsub.module.ts
@@ -1,11 +1,6 @@
import { PubSubService } from './angular2-pubsub.service';
import { ModuleWithProviders, NgModule } from '@angular/core';
-@NgModule({
- providers: [
- PubSubService
7
- ]
8
-})
9
export class PubSubModule {
10
public static forRoot(): ModuleWithProviders {
11
return {
0 commit comments