From 845509e1e2c35cdbe7b82328d88defb1df678ac0 Mon Sep 17 00:00:00 2001
From: "lennart.kramer" <lennart.kramer@stud.uni-goettingen.de>
Date: Wed, 24 May 2023 21:49:56 +0200
Subject: [PATCH] bump version

---
 CHANGELOG             | 5 +++++
 goemaxima_version     | 2 +-
 helmmaxima/Chart.yaml | 4 ++--
 src/web/web.go        | 2 +-
 4 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG
index 4e6f8e9..ac01799 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,8 @@
+1.1.9
+-----
+* Add 2023052400 version
+* Load lsquares earlier than stackmaxima libraries so that fboundp does not get overwritten
+
 1.1.8
 -----
 * Backport cartesian_product fix for 5.44 maxima version
diff --git a/goemaxima_version b/goemaxima_version
index 18efdb9..512a1fa 100644
--- a/goemaxima_version
+++ b/goemaxima_version
@@ -1 +1 @@
-1.1.8
+1.1.9
diff --git a/helmmaxima/Chart.yaml b/helmmaxima/Chart.yaml
index 2431ea5..bec4468 100644
--- a/helmmaxima/Chart.yaml
+++ b/helmmaxima/Chart.yaml
@@ -14,8 +14,8 @@ type: application
 
 # This is the chart version. This version number should be incremented each time you make changes
 # to the chart and its templates, including the app version.
-version: 1.1.8
+version: 1.1.9
 
 # This is the version number of the application being deployed. This version number should be
 # incremented each time you make changes to the application.
-appVersion: 1.1.8
+appVersion: 1.1.9
diff --git a/src/web/web.go b/src/web/web.go
index 3530d2e..4a46d9a 100644
--- a/src/web/web.go
+++ b/src/web/web.go
@@ -460,7 +460,7 @@ func handler(w http.ResponseWriter, r *http.Request, queue <-chan *ChildProcess,
 	health := r.FormValue("health") == "1"
 	if r.Method == "GET" && r.FormValue("input") == "" && !health {
 		hostname, _ := os.Hostname()
-		fmt.Fprintf(w, "Hostname: %s, version: 1.1.8\n", hostname)
+		fmt.Fprintf(w, "Hostname: %s, version: 1.1.9\n", hostname)
 		return
 	}
 	// the maxima input to be evaluated
-- 
GitLab