Skip to content

Commit

Permalink
merge: pull request #65 from PaulRBerg/fix/branchName
Browse files Browse the repository at this point in the history
fix: branch name
  • Loading branch information
PaulRBerg authored Sep 2, 2020
2 parents f12f5fe + 65b5f9f commit 350af32
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion src/helpers/constants.ts
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 350af32

Please sign in to comment.