diff --git a/CHANGELOG b/CHANGELOG
index bfd625f8d0c16e65c896cbec81af33120f8eb23e..a8f9a44e06ef5328668a253d7589491cd8f5b237 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,10 @@
+1.1.6
+-----
+* Add stackmaxima versions 2023010400
+* Remove some required capabilities by managing users by changing uid from a webserver thread
+* Change webserver build to use `CGO_ENABLED=0` to make it static
+* Add NPROC rlimit of 4096 to make fork bombs less lethal
+
 1.1.5
 -----
 * Add stackmaxima versions 2022060100, 2022071300
diff --git a/goemaxima_version b/goemaxima_version
index e25d8d9f357cfa028ffbf2f7bdc597e28968696b..0664a8fd291f962d348db7633b2c79e8188f62fa 100644
--- a/goemaxima_version
+++ b/goemaxima_version
@@ -1 +1 @@
-1.1.5
+1.1.6
diff --git a/helmmaxima/Chart.yaml b/helmmaxima/Chart.yaml
index 85a2edddef2bb49e3a0c5f0a7e41b526175a078d..a1a1bb3195239352af8601a3e97f8f36cbe2d583 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.5
+version: 1.1.6
 
 # 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.5
+appVersion: 1.1.6
diff --git a/src/web/web.go b/src/web/web.go
index 1e83c7926cdf529da49166ec831f433f3d00acce..a640e254ee0e4b0cfe8ed4d8aa45b6a344fdec02 100644
--- a/src/web/web.go
+++ b/src/web/web.go
@@ -456,7 +456,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.5\n", hostname)
+		fmt.Fprintf(w, "Hostname: %s, version: 1.1.6\n", hostname)
 		return
 	}
 	// the maxima input to be evaluated