diff --git a/CHANGELOG.md b/CHANGELOG.md index c8c295bc..6d5c2ad8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.6.5] - 2021-05-26 + +### Fixed + +- Install core.js missing dependency in vue handlebars template, which fixes [issue #104](https://github.com/paulrberg/create-eth-app/issues/104) + ## [1.6.4] - 2021-05-25 ### Fixed @@ -170,7 +176,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release of the tool - The default template -[1.6.4]: https://github.com/paulrberg/create-eth-app/compare/v1.6.2...v1.6.4 +[1.6.5]: https://github.com/paulrberg/create-eth-app/compare/v1.6.4...v1.6.5 +[1.6.4]: https://github.com/paulrberg/create-eth-app/compare/v1.6.3...v1.6.4 [1.6.3]: https://github.com/paulrberg/create-eth-app/compare/v1.6.2...v1.6.3 [1.6.2]: https://github.com/paulrberg/create-eth-app/compare/v1.6.1...v1.6.2 [1.6.1]: https://github.com/paulrberg/create-eth-app/compare/v1.5.0...v1.6.1 diff --git a/handlebars/vue/packages/vue-app/package.json.hbs b/handlebars/vue/packages/vue-app/package.json.hbs index 87485240..d02c4ee9 100644 --- a/handlebars/vue/packages/vue-app/package.json.hbs +++ b/handlebars/vue/packages/vue-app/package.json.hbs @@ -22,6 +22,7 @@ "apollo-link-http": "^1.5.17", "babel-eslint": "^10.1.0", "chalk": "^4.1.0", + "core-js": "^3.13.0", "eslint": "^6.8.0", "eslint-plugin-vue": "^6.2.2", "graphql": "^15.3.0", diff --git a/package.json b/package.json index 506dae80..85485bc1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "create-eth-app", "description": "Create Ethereum-powered apps with one command", - "version": "1.6.4", + "version": "1.6.5", "bin": { "create-eth-app": "./dist/index.js" },