diff --git a/config/docs.php b/config/docs.php index 9650b1f0..eedd77e8 100644 --- a/config/docs.php +++ b/config/docs.php @@ -56,6 +56,20 @@ 'getting-started', ], + /* + |-------------------------------------------------------------------------- + | Sidebar Labels + |-------------------------------------------------------------------------- + | + | Define custom labels for sidebar items. The array key should be the + | page identifier, and the value should be the display label. + | + */ + + 'labels' => [ + \Hyde\Pages\DocumentationPage::homeRouteName() => 'Docs', + ], + /* |-------------------------------------------------------------------------- | Table of Contents Settings diff --git a/src/Foundation/HydeKernel.php b/src/Foundation/HydeKernel.php index 992ad488..708512c4 100644 --- a/src/Foundation/HydeKernel.php +++ b/src/Foundation/HydeKernel.php @@ -50,7 +50,7 @@ class HydeKernel implements SerializableContract use Serializable; use Macroable; - final public const VERSION = '2.0.0-RC.4'; + final public const VERSION = '2.0.0'; protected static self $instance;