Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: WalletConnect/create-eth-app
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.6.2
Choose a base ref
...
head repository: WalletConnect/create-eth-app
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.6.3
Choose a head ref
  • 8 commits
  • 5 files changed
  • 2 contributors

Commits on Dec 17, 2020

  1. Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    528ddbc View commit details
  2. merge: pull request #109 from paulrberg/docs/grant-update

    docs: update link for grant funding
    PaulRBerg authored Dec 17, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a200223 View commit details

Commits on Dec 20, 2020

  1. merge: pull request #110 from paulrberg/staging

    Roll v1.6.2 and fix infinite re-render
    PaulRBerg authored Dec 20, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    1beebf4 View commit details

Commits on Feb 19, 2021

  1. Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    b7f5579 View commit details

Commits on May 13, 2021

  1. fix console warning 'body' nested inside 'div'

    > index.js:1 Warning: validateDOMNesting(...): <body> cannot appear as a child of <div>.
        in body (created by styled.body)
        in styled.body (at App.js:55)
        in div (at App.js:51)
        in App (at src/index.js:16)
        in ApolloProvider (at src/index.js:15)
    dylanjha committed May 13, 2021
    Copy the full SHA
    524540b View commit details

Commits on May 14, 2021

  1. feat: roll v1.6.3

    docs: add missing hyperlinks in CHANGELOG.md
    PaulRBerg committed May 14, 2021

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    2b5260c View commit details
  2. merge: pull request #125 from dylanjha/dj/body-warning-fix

    fix: console warning 'body' nested inside 'div'
    PaulRBerg authored May 14, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8e315ad View commit details
  3. 1

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    d858e3b View commit details
Showing with 21 additions and 4 deletions.
  1. +3 −0 .czrc
  2. +2 −2 .github/FUNDING.yml
  3. +14 −0 CHANGELOG.md
  4. +1 −1 handlebars/react/packages/react-app/src/components/index.js
  5. +1 −1 package.json
3 changes: 3 additions & 0 deletions .czrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"path": "cz-conventional-changelog"
}
4 changes: 2 additions & 2 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

# These are supported funding model platforms

custom: ["https://gitcoin.co/grants/943/create-eth-app"]
custom: ["https://gitcoin.co/grants/1657/paulrberg-open-source-engineering"]
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.3] - 2021-05-14

### Fixed

- Warning caused by duplicate "body" tag, which fixes [issue #55](https://github.com/paulrberg/create-eth-app/issues/55)

## [1.6.2] - 2020-12-20

### Fixed
@@ -158,6 +164,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release of the tool
- The default template

[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
[1.5.0]: https://github.com/paulrberg/create-eth-app/compare/v1.4.1...v1.5.0
[1.4.1]: https://github.com/paulrberg/create-eth-app/compare/v1.4.0...v1.4.1
[1.4.0]: https://github.com/paulrberg/create-eth-app/compare/v1.3.1...v1.4.0
[1.3.1]: https://github.com/paulrberg/create-eth-app/compare/v1.3.0...v1.3.1
[1.3.0]: https://github.com/paulrberg/create-eth-app/compare/v1.2.0...v1.3.0
[1.2.0]: https://github.com/paulrberg/create-eth-app/compare/v1.1.1...v1.2.0
[1.1.1]: https://github.com/paulrberg/create-eth-app/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/paulrberg/create-eth-app/compare/v1.0.0...v1.1.0
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ export const Header = styled.header`
color: white;
`;

export const Body = styled.body`
export const Body = styled.div`
align-items: center;
background-color: #282c34;
color: white;
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.6.2",
"version": "1.6.3",
"bin": {
"create-eth-app": "./dist/index.js"
},