From 6bfdaeed86686b105ec0b3e3a1512d6992cd7e69 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Tue, 11 Feb 2020 11:42:30 -0500 Subject: [PATCH] 5.0.0 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ angular/package.json | 4 ++-- core/package.json | 2 +- docs/package.json | 2 +- packages/angular-server/package.json | 4 ++-- packages/react-router/package.json | 10 +++++----- packages/react/package.json | 4 ++-- 7 files changed, 37 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93fc000215..9e62e86f0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +# [5.0.0 Magnesium](https://github.com/ionic-team/ionic/compare/v4.11.10...v5.0.0) (2020-02-11) + +Enjoy! :fire: + +> We recommend updating to version `4.11.10` before updating to this version in order to see deprecation warnings related to your app [in the developer console](https://javascript.info/devtools). + +Run the following commands based on your project type: + +``` +# for an angular app +npm i @ionic/angular@latest --save --save-exact + +# for a react app +npm i @ionic/react@latest --save --save-exact +npm i @ionic/react-router@latest --save --save-exact +npm i ionicons@latest --save --save-exact + +# for a stencil / vanilla JS app +npm i @ionic/core@latest --save --save-exact +``` + +Then take a look at the [Breaking Changes](./BREAKING.md) file for API changes. + + # [5.0.0-rc.5](https://github.com/ionic-team/ionic/compare/v5.0.0-rc.4...v5.0.0-rc.5) (2020-02-11) diff --git a/angular/package.json b/angular/package.json index 5947138a0c..f35e4a6d32 100644 --- a/angular/package.json +++ b/angular/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/angular", - "version": "5.0.0-rc.5", + "version": "5.0.0", "description": "Angular specific wrappers for @ionic/core", "keywords": [ "ionic", @@ -42,7 +42,7 @@ "validate": "npm i && npm run lint && npm run test && npm run build" }, "dependencies": { - "@ionic/core": "5.0.0-rc.5", + "@ionic/core": "5.0.0", "tslib": "^1.9.3" }, "peerDependencies": { diff --git a/core/package.json b/core/package.json index 5ce1dfb34c..d962549de0 100644 --- a/core/package.json +++ b/core/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/core", - "version": "5.0.0-rc.5", + "version": "5.0.0", "description": "Base components for Ionic", "keywords": [ "ionic", diff --git a/docs/package.json b/docs/package.json index 0c23bec1a6..260c2199dc 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/docs", - "version": "5.0.0-rc.5", + "version": "5.0.0", "description": "Pre-packaged API documentation for the Ionic docs.", "main": "core.json", "types": "core.d.ts", diff --git a/packages/angular-server/package.json b/packages/angular-server/package.json index 32fbeff041..f387e3cf4a 100644 --- a/packages/angular-server/package.json +++ b/packages/angular-server/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/angular-server", - "version": "5.0.0-rc.5", + "version": "5.0.0", "description": "Angular SSR Module for Ionic", "keywords": [ "ionic", @@ -49,7 +49,7 @@ "@angular/core": "8.2.13", "@angular/platform-browser": "8.2.13", "@angular/platform-server": "8.2.13", - "@ionic/core": "5.0.0-rc.5", + "@ionic/core": "5.0.0", "ng-packagr": "5.7.1", "tslint": "^5.12.1", "tslint-ionic-rules": "0.0.21", diff --git a/packages/react-router/package.json b/packages/react-router/package.json index a944954e7c..c2d1247625 100644 --- a/packages/react-router/package.json +++ b/packages/react-router/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/react-router", - "version": "5.0.0-rc.5", + "version": "5.0.0", "description": "React Router wrapper for @ionic/react", "keywords": [ "ionic", @@ -39,16 +39,16 @@ "tslib": "*" }, "peerDependencies": { - "@ionic/core": "5.0.0-rc.5", - "@ionic/react": "5.0.0-rc.5", + "@ionic/core": "5.0.0", + "@ionic/react": "5.0.0", "react": "^16.8.6", "react-dom": "^16.8.6", "react-router": "^5.0.1", "react-router-dom": "^5.0.1" }, "devDependencies": { - "@ionic/core": "5.0.0-rc.5", - "@ionic/react": "5.0.0-rc.5", + "@ionic/core": "5.0.0", + "@ionic/react": "5.0.0", "@testing-library/jest-dom": "^4.2.4", "@testing-library/react": "^9.3.2", "@testing-library/user-event": "^7.1.2", diff --git a/packages/react/package.json b/packages/react/package.json index 4f3e80281f..7e7894085d 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/react", - "version": "5.0.0-rc.5", + "version": "5.0.0", "description": "React specific wrapper for @ionic/core", "keywords": [ "ionic", @@ -39,7 +39,7 @@ "css/" ], "dependencies": { - "@ionic/core": "5.0.0-rc.5", + "@ionic/core": "5.0.0", "ionicons": "^5.0.0", "tslib": "*" },