From 141d17d8873ec8a9fba73110c6afdb1f2c334422 Mon Sep 17 00:00:00 2001 From: Seth Davenport Date: Sat, 4 Feb 2017 13:32:19 -0500 Subject: [PATCH] Prepare to move the new naming scheme out of beta --- CHANGELOG.md | 36 ++++++++++++++++++++++++++++++++++++ package.json | 4 ++-- 2 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..1b603c7 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,36 @@ +# 6.0.0 - The big-rename. + +Due to the impending release of Angular4, the name 'ng2-redux' no longer makes +a ton of sense. The Angular folks have moved to a model where all versions are +just called 'Angular', and we should match that. + +After discussion with the other maintainers, we decided that since we have to +rename things anyway, this is a good opportunity to collect ng2-redux and its +related libraries into a set of scoped packages. This will allow us to grow +the feature set in a coherent but decoupled way. + +As of v6, the following packages are deprecated: + +* ng2-redux +* ng2-redux-router +* ng2-redux-form + +Those packages will still be available on npm for as long as they are being used. + +However we have published the same code under a new package naming scheme: + +* @angular-redux/store (formerly ng2-redux) +* @angular-redux/router (formerly ng2-redux-router) +* @angular-redux/form (formerly ng2-redux-form). + +We have also decided that it's easier to reason about things if these packages +align at least on major versions. So everything has at this point been bumped +to 6.0.0. + +# Breaking changes + +Apart from the rename, the following API changes are noted: + +* @angular-redux/store: none. +* @angular-redux/router: none. +* @angular-redux/form: `NgReduxForms` renamed to `NgReduxFormModule` for consistency. diff --git a/package.json b/package.json index 6861587..c8c18e5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@angular-redux/form", - "version": "5.1.0-beta.1", - "description": "Build Angular 2 forms with Redux", + "version": "6.0.0", + "description": "Build Angular2+ forms with Redux", "devDependencies": { "@angular/common": "^2.4.2", "@angular/compiler": "^2.4.2",