From a61cbf29e5fa5c5afdd7e5d9237678ec50fef9ba Mon Sep 17 00:00:00 2001 From: Mark Date: Fri, 22 Sep 2023 11:05:30 -0700 Subject: [PATCH 1/4] Makefile edits --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 60e598b..5696a46 100644 --- a/Makefile +++ b/Makefile @@ -14,5 +14,5 @@ publish: cargo test cargo publish -docker: +docker: wasm docker build ./server -t git.betalupi.com/mark/daisy From e5525adcca26efde3c8e9093c8163c61b4771fb8 Mon Sep 17 00:00:00 2001 From: Mark Date: Fri, 22 Sep 2023 11:05:58 -0700 Subject: [PATCH 2/4] Updated todo --- TODO.md | 1 - 1 file changed, 1 deletion(-) diff --git a/TODO.md b/TODO.md index 0c7d92a..476e696 100644 --- a/TODO.md +++ b/TODO.md @@ -12,7 +12,6 @@ ## Pre-release - Tuple operations - we don't need vectors as arguments to operators - - Fix linelocation when evaluating functions ## Parser - Should functions be operators? From 2531524ffd3b4ee382fdee5204f5ae79a1287080 Mon Sep 17 00:00:00 2001 From: Mark Date: Fri, 22 Sep 2023 11:22:36 -0700 Subject: [PATCH 3/4] Updated makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5696a46..10188e0 100644 --- a/Makefile +++ b/Makefile @@ -15,4 +15,5 @@ publish: cargo publish docker: wasm - docker build ./server -t git.betalupi.com/mark/daisy + docker build ./server -t git.betalupi.com/mark/daisy --no-cache + docker push git.betalupi.com/mark/daisy From 2f2c005c865aea1d1ff20f9ad72c839764329f78 Mon Sep 17 00:00:00 2001 From: Mark Date: Thu, 28 Sep 2023 13:32:34 -0700 Subject: [PATCH 4/4] Version bump --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6ba14d1..7fcf22f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -28,7 +28,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "daisycalc" -version = "1.1.4" +version = "1.1.5" dependencies = [ "cfg-if", "num", diff --git a/Cargo.toml b/Cargo.toml index cbe1259..763b9c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "daisycalc" -version = "1.1.4" +version = "1.1.5" edition = "2021" build = "buildscript/main.rs" license = "GPL-3.0-only"