Skip to content

Commit ca25143

Browse files
committed
v0.5.5-alpha
1 parent 83b1b40 commit ca25143

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,16 +82,16 @@ jobs:
8282
env:
8383
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8484
run: |
85-
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn-0.5.4-alpha.AppImage" --clobber
85+
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn-0.5.5-alpha.AppImage" --clobber
8686
- name: upload binary (macos only)
8787
if: ${{ runner.os == 'macOs' }}
8888
env:
8989
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9090
run: |
91-
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn-0.5.4-alpha.dmg" --clobber
91+
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn-0.5.5-alpha.dmg" --clobber
9292
- name: upload binary (Windows only)
9393
if: ${{ runner.os == 'Windows' }}
9494
env:
9595
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9696
run: |
97-
gh release upload "$($env:GITHUB_REF -replace "refs/tags/")" "electron/out/Acorn.Setup.0.5.4-alpha.exe" --clobber
97+
gh release upload "$($env:GITHUB_REF -replace "refs/tags/")" "electron/out/Acorn.Setup.0.5.5-alpha.exe" --clobber

electron/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "acorn",
3-
"version": "0.5.4-alpha",
3+
"version": "0.5.5-alpha",
44
"description": "Create the future",
55
"main": "dist/index.js",
66
"scripts": {

electron/src/holochain.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ const devOptions: HolochainRunnerOptions = {
7676
}
7777
const prodOptions: HolochainRunnerOptions = {
7878
dnaPath: profilesDnaPath, // preload
79-
datastorePath: path.join(app.getPath('userData'), 'databases-0-5-4-alpha'),
79+
datastorePath: path.join(app.getPath('userData'), 'databases-0-5-5-alpha'),
8080
appId: MAIN_APP_ID,
8181
appWsPort: 8889,
8282
adminWsPort: 1235,
83-
keystorePath: path.join(app.getPath('userData'), 'keystore-0-5-4-alpha'),
83+
keystorePath: path.join(app.getPath('userData'), 'keystore-0-5-5-alpha'),
8484
proxyUrl: COMMUNITY_PROXY_URL,
8585
}
8686

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "acorn",
3-
"version": "0.5.4-alpha",
3+
"version": "0.5.5-alpha",
44
"description": "Acorn is software that helps people create the future",
55
"repository": {
66
"type": "git",

web/dist/splashscreen.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div class="splash-content-wrapper">
1313
<div>
1414
<div class="splash-logo">acorn</div>
15-
<div class="splash-version">version 0.5.4-alpha</div>
15+
<div class="splash-version">version 0.5.5-alpha</div>
1616
</div>
1717
<div class="splash-loading-message" id="activity">
1818
Setting up Holochain...

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "acorn-ui",
3-
"version": "0.5.4-alpha",
3+
"version": "0.5.5-alpha",
44
"devDependencies": {
55
"@babel/core": "^7.5.5",
66
"@babel/preset-env": "7.5.5",

0 commit comments

Comments
 (0)