Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
ddd-mtl committed Oct 20, 2022
1 parent a720155 commit 2c68c8f
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- v[0-9]+.*

env:
WHERE_VERSION: 0.0.9
WHERE_VERSION: 0.1.0
USE_HARD_LINKS: false

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: test-workflow x64
on: workflow_dispatch

env:
WHERE_VERSION: 0.0.9
WHERE_VERSION: 0.1.0
USE_HARD_LINKS: false

jobs:
Expand Down
2 changes: 1 addition & 1 deletion electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "where-app",
"version": "0.0.9",
"version": "0.1.0",
"description": "A playground for group self-awareness",
"repository": {
"type": "git",
Expand Down
5 changes: 4 additions & 1 deletion electron/web/splashscreen.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
<div class="splash-content-wrapper">
<div>
<div class="splash-logo">where</div>
<div class="splash-version">version 0.0.9</div>
<div class="splash-version">
<!-- MUST STAY ON LINE 17 for version number update -->
version 0.1.0
</div>
</div>
<div class="splash-loading-message" id="activity">
Setting up Holochain...
Expand Down
8 changes: 4 additions & 4 deletions scripts/update-version-number.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ echo "./.github/workflows/test.yml '$OLD_VER' -> '$1'"
sed -i "s/$OLD_VER/$1/" ./.github/workflows/test.yml


## Change electron/web/splashscreen.html
#LINE=`echo version $1`
#echo $LINE
#sed -i "17s/.*/ ${LINE}/" electron/web/splashscreen.html
# Change electron/web/splashscreen.html
LINE=`echo version $1`
echo $LINE
sed -i "17s/.*/ ${LINE}/" electron/web/splashscreen.html
2 changes: 1 addition & 1 deletion we-applet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "we-applet",
"version": "0.0.1",
"version": "0.1.0",
"private": true,
"scripts": {
"tsc": "tsc",
Expand Down
2 changes: 1 addition & 1 deletion webapp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "where",
"version": "0.0.9",
"version": "0.1.0",
"scripts": {
"tsc": "tsc",
"build": "rm -rf dist && tsc && rollup -c && cd dist && cp * ../../electron/web",
Expand Down
2 changes: 1 addition & 1 deletion webcomponents/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@where/elements",
"version": "0.0.1",
"version": "0.1.0",
"main": "./dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
Expand Down

0 comments on commit 2c68c8f

Please sign in to comment.