Skip to content

Commit

Permalink
Merge pull request #1247 from aeternity/release/v0.5.5
Browse files Browse the repository at this point in the history
Release v0.5.5
  • Loading branch information
CedrikNikita authored Jun 18, 2024
2 parents 9083023 + 5efd99d commit 7a30edb
Show file tree
Hide file tree
Showing 34 changed files with 10,004 additions and 5,775 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ VUE_APP_WALLET_URL=https://wallet.superhero.com
VUE_APP_JITSI_HOST=meet.aepps.com
VUE_APP_BACKEND_URL=https://raendom-backend.z52da5wt.xyz
VUE_APP_NODE_URL=https://mainnet.aeternity.io
VUE_APP_EXPLORER_URL=https://mainnet.aeternal.io
VUE_APP_EXPLORER_URL=https://explorer.aeternity.io
VUE_APP_COMPILER_URL=https://latest.compiler.aepps.com
VUE_APP_CONTRACT_V1_ADDRESS=ct_2AfnEfCSZCTEkxL5Yoi4Yfq6fF7YapHRaFKDJK3THMXMBspp5z
VUE_APP_CONTRACT_V2_ADDRESS=
Expand Down
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ module.exports = {
'vue-i18n/no-dynamic-keys': 'error',
'vue-i18n/no-unused-keys': 'error',
'vue-i18n/no-raw-text': 'off',
'vue-i18n/no-missing-keys': process.env.NODE_ENV === 'production' ? 'off' : 'warn',
},
overrides: [
{
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ jobs:
env:
APP_NAME: aggregator
steps:
- if: github.ref != 'refs/heads/develop'
uses: actions/checkout@v2
with:
ref: develop
- uses: actions/checkout@v2
with:
fetch-depth: 100
- if: github.ref != 'refs/heads/develop'
run: git branch develop origin/develop
- uses: actions/setup-node@v2
with:
node-version: 14.x
Expand Down
2 changes: 2 additions & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
nodejs 14.21.3
python 3.10.14
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,10 @@ npm run test:e2e
npm run lint
```

### Bump version and generate change log
```
npm run release
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
3 changes: 3 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
};
Loading

0 comments on commit 7a30edb

Please sign in to comment.