Skip to content

Commit

Permalink
v0.5.5-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
Connoropolous committed Oct 12, 2021
1 parent 83b1b40 commit ca25143
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,16 +82,16 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn-0.5.4-alpha.AppImage" --clobber
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn-0.5.5-alpha.AppImage" --clobber
- name: upload binary (macos only)
if: ${{ runner.os == 'macOs' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn-0.5.4-alpha.dmg" --clobber
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn-0.5.5-alpha.dmg" --clobber
- name: upload binary (Windows only)
if: ${{ runner.os == 'Windows' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release upload "$($env:GITHUB_REF -replace "refs/tags/")" "electron/out/Acorn.Setup.0.5.4-alpha.exe" --clobber
gh release upload "$($env:GITHUB_REF -replace "refs/tags/")" "electron/out/Acorn.Setup.0.5.5-alpha.exe" --clobber
2 changes: 1 addition & 1 deletion electron/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "acorn",
"version": "0.5.4-alpha",
"version": "0.5.5-alpha",
"description": "Create the future",
"main": "dist/index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions electron/src/holochain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ const devOptions: HolochainRunnerOptions = {
}
const prodOptions: HolochainRunnerOptions = {
dnaPath: profilesDnaPath, // preload
datastorePath: path.join(app.getPath('userData'), 'databases-0-5-4-alpha'),
datastorePath: path.join(app.getPath('userData'), 'databases-0-5-5-alpha'),
appId: MAIN_APP_ID,
appWsPort: 8889,
adminWsPort: 1235,
keystorePath: path.join(app.getPath('userData'), 'keystore-0-5-4-alpha'),
keystorePath: path.join(app.getPath('userData'), 'keystore-0-5-5-alpha'),
proxyUrl: COMMUNITY_PROXY_URL,
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "acorn",
"version": "0.5.4-alpha",
"version": "0.5.5-alpha",
"description": "Acorn is software that helps people create the future",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion web/dist/splashscreen.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<div class="splash-content-wrapper">
<div>
<div class="splash-logo">acorn</div>
<div class="splash-version">version 0.5.4-alpha</div>
<div class="splash-version">version 0.5.5-alpha</div>
</div>
<div class="splash-loading-message" id="activity">
Setting up Holochain...
Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "acorn-ui",
"version": "0.5.4-alpha",
"version": "0.5.5-alpha",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "7.5.5",
Expand Down

0 comments on commit ca25143

Please sign in to comment.