diff --git a/CHANGELOG b/CHANGELOG index 4e6f8e960466eab90bf909c429b9b74e09143b90..ac01799e5a507465e3aca9d6050527224faba70b 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 18efdb9ae67a363598be48f21356657f831557a5..512a1faa68010937a4b758aa6579efd68946d40f 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 2431ea5c58593249b35f379443425c9159302206..bec44688accb7977e5a1055afc54f8f3799327d4 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 3530d2ea932a46f2008ac11e1d1b20b6e604501a..4a46d9a489518656c063d564b4f19494b4df2d8d 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