diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5e5a57ae..0696a389 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
 
 The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org).
 
-## [Unreleased]
+## [4.2.1] - 2024-10-04
 ### Added
 * [#2183](https://github.com/shlinkio/shlink/issues/2183) Redis database index to be used can now be specified in the connection URI path, and Shlink will honor it.
 
@@ -18,7 +18,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com), and this
 * *Nothing*
 
 ### Fixed
-* *Nothing*
+* [#2201](https://github.com/shlinkio/shlink/issues/2201) Fix `MEMORY_LIMIT` option being ignored when provided via installer options.
 
 
 ## [4.2.0] - 2024-08-11
diff --git a/config/container.php b/config/container.php
index 7ae58b75..6e5172a4 100644
--- a/config/container.php
+++ b/config/container.php
@@ -24,7 +24,7 @@ if (! class_exists(LOCAL_LOCK_FACTORY)) {
 return (static function (): ServiceManager {
     $config = require __DIR__ . '/config.php';
 
-    // Set a default memory limit right after loading config, to ensure installer config has been promoted as env vars
+    // Set memory limit right after loading config, to ensure installer config has been promoted as env vars
     ini_set('memory_limit', EnvVars::MEMORY_LIMIT->loadFromEnv('512M'));
 
     $container = new ServiceManager($config['dependencies']);