diff --git a/README.md b/README.md
index 7e98a3bd94e0c758afd8eb16c0a6e8a45edfc84b..e101fd2f6c0ea892d6aac0c919efadb34e1f44c8 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,5 @@
 Automatic Updates
 ---------------
-🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥
-
-Warning the 8.x-2.x version of this module is still in development and should only be used development and testing.
-
-🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥
-
 ### Automatic Updates Initiative
 
 - Follow and read up on
diff --git a/automatic_updates.info.yml b/automatic_updates.info.yml
index e6fee5ee29f348f6ef40d0e9aa98a16caaf511fc..37d097bec121bc7e350c9a022692699ecf4e23bd 100644
--- a/automatic_updates.info.yml
+++ b/automatic_updates.info.yml
@@ -2,7 +2,6 @@ name: 'Automatic Updates'
 type: module
 description: 'Automatically updates Drupal core.'
 core_version_requirement: ^9.3
-lifecycle: experimental
 dependencies:
   - drupal:package_manager
   - drupal:update
diff --git a/automatic_updates.module b/automatic_updates.module
index 9b5d8534ae0244f7b48f77368cfffc72936ef863..42d886df60ea0b595b9b4d68d240a24cf7d20c06 100644
--- a/automatic_updates.module
+++ b/automatic_updates.module
@@ -45,7 +45,7 @@ function automatic_updates_mail(string $key, array &$message, array $params): vo
       '@previous_version' => $params['previous_version'],
       '@updated_version' => $params['updated_version'],
     ]);
-    $message['body'][] = t('This e-mail was sent by the Automatic Updates module, which is an experimental module. Furthermore, unattended updates are not yet fully supported.');
+    $message['body'][] = t('This e-mail was sent by the Automatic Updates module. Unattended updates are not yet fully supported.');
     $message['body'][] = t('If you are using this feature in production, it is strongly recommended for you to visit your site and ensure that everything still looks good.');
   }
 }
diff --git a/package_manager/package_manager.info.yml b/package_manager/package_manager.info.yml
index 80185a8d5eafeabbb5d276513c3f25774715e91c..2e1cbc2755a7e7d4cfb7fc4ebc77a968c49173b5 100644
--- a/package_manager/package_manager.info.yml
+++ b/package_manager/package_manager.info.yml
@@ -2,4 +2,3 @@ name: 'Package Manager'
 type: module
 description: 'API module providing functionality for staging package installs and updates with Composer.'
 core_version_requirement: ^9.3
-lifecycle: experimental
diff --git a/src/Form/UpdaterForm.php b/src/Form/UpdaterForm.php
index 0f7b46ef04c3326b03896aa8c85b8c64b86ffaef..2e8d98705de7f8a6d2af905d5bfd245254c1e1bb 100644
--- a/src/Form/UpdaterForm.php
+++ b/src/Form/UpdaterForm.php
@@ -119,8 +119,6 @@ final class UpdaterForm extends FormBase {
    * {@inheritdoc}
    */
   public function buildForm(array $form, FormStateInterface $form_state) {
-    $this->messenger()->addWarning($this->t('This is an experimental Automatic Updater using Composer. Use at your own risk.'));
-
     if ($this->updater->isAvailable()) {
       $stage_exists = FALSE;
     }
diff --git a/tests/src/Unit/EnsureExperimentalTest.php b/tests/src/Unit/EnsureExperimentalTest.php
deleted file mode 100644
index 55374505b4fe66756eb578f85fbea6efb599fe41..0000000000000000000000000000000000000000
--- a/tests/src/Unit/EnsureExperimentalTest.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-namespace Drupal\Tests\automatic_updates\Unit;
-
-use Drupal\Tests\UnitTestCase;
-use Symfony\Component\Yaml\Yaml;
-
-/**
- * Tests to ensure the modules are experimental.
- *
- * @group automatic_updates
- */
-class EnsureExperimentalTest extends UnitTestCase {
-
-  /**
-   * Tests that the modules are experimental.
-   */
-  public function testModulesExperimental() {
-    $info_files = [
-      __DIR__ . '/../../../automatic_updates_extensions/automatic_updates_extensions.info.yml',
-      __DIR__ . '/../../../automatic_updates.info.yml',
-      __DIR__ . '/../../../package_manager/package_manager.info.yml',
-
-    ];
-    foreach ($info_files as $info_file) {
-      $info = Yaml::parseFile($info_file);
-      $this->assertSame('experimental', $info['lifecycle']);
-    }
-  }
-
-}