diff --git a/CHANGELOG.md b/CHANGELOG.md index e0ea7890..22c8ad44 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.4.1] - 2020-09-03 + +### Fixed + +- The branch name has been set back to "develop" after being erroneously set to "staging" when v1.4.0 was shipped + ## [1.4.0] - 2020-08-23 ### Added diff --git a/package.json b/package.json index 556bbe24..e4fa0eea 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.4.0", + "version": "1.4.1", "bin": { "create-eth-app": "./dist/index.js" }, diff --git a/src/helpers/constants.ts b/src/helpers/constants.ts index d6657393..d8c0a8f3 100644 --- a/src/helpers/constants.ts +++ b/src/helpers/constants.ts @@ -1,4 +1,4 @@ -export const branch: string = "staging"; +export const branch: string = "develop"; export const frameworks = ["react", "vue"] as const; export const templates = [ "aave",