includes/modules/version.php

<?php
declare(strict_types=1);

/*
|--------------------------------------------------------------------------
| Current version
|--------------------------------------------------------------------------
|
| Single source of truth for the running version number, bumped on
| release. Compared against the update manifest's "version" field by
| includes/modules/update.php to detect available updates.
|
*/

function brivacia_version(): string
{
    return '1.0.0b1';
}

Contribute