Skip to content

Commit d086c77

Browse files
committed
Bump version to 0.4.3
1 parent 3745a38 commit d086c77

5 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/itch-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929
BUTLER_CREDENTIALS: ${{ secrets.BUTLER_CREDENTIALS }}
3030
CHANNEL: html5
3131
PACKAGE: build/clave
32-
VERSION: 0.4.2
32+
VERSION: 0.4.3

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,5 @@ project/metals.sbt
3939
.gradle
4040
gradle
4141
build
42-
bubblewrap/app
42+
bubblewrap/app
43+
bubblewrap

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ enablePlugins(JSDependenciesPlugin)
44

55
name := "Clave"
66

7-
version := "0.4.2"
7+
version := "0.4.3"
88

99
scalaVersion := "2.13.16"
1010

src/main/resources/service-worker.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
// Names of the two caches used in this version of the service worker.
1515
// Change to v2, etc. when you update any of the local resources, which will
1616
// in turn trigger the install event again.
17-
const PRECACHE = 'precache-v0.4.2-0010';
18-
const RUNTIME = 'runtime-v0.4.2-0010';
17+
const PRECACHE = 'precache-v0.4.3-0000';
18+
const RUNTIME = 'runtime-v0.4.3-0000';
1919

2020
// A list of local resources we always want to be cached.
2121
const PRECACHE_URLS = [

src/main/scala/net/mrkeks/clave/game/ProgressTracking.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import net.mrkeks.clave.map.LevelDownloader
55

66
object ProgressTracking {
77
val ClavePrefix = "clave."
8-
val ClaveVersion = "0.4.2"
8+
val ClaveVersion = "0.4.3"
99
val LocalStorageScoreKey = ClavePrefix + "scores"
1010
}
1111

0 commit comments

Comments
 (0)