Skip to content

Commit

Permalink
Add new version
Browse files Browse the repository at this point in the history
  • Loading branch information
idmarinas committed Nov 6, 2023
1 parent cf54ad4 commit 09603d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/core/Installer/Pattern/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ trait Version
'7.1.10 IDMarinas Edition' => 70110,
'7.1.11 IDMarinas Edition' => 70111,
'7.1.12 IDMarinas Edition' => 70112,
'7.1.13 IDMarinas Edition' => 70113,
];

/**
Expand Down
6 changes: 3 additions & 3 deletions src/core/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ class Kernel extends BaseKernel
{
use MicroKernelTrait;

public const VERSION = '7.1.12 IDMarinas Edition'; // Version of game in public display format.
public const VERSION_ID = 70112; // Identify version of game in numeric format.
public const VERSION = '7.1.13 IDMarinas Edition'; // Version of game in public display format.
public const VERSION_ID = 70113; // Identify version of game in numeric format.
public const MAJOR_VERSION = 7;
public const MINOR_VERSION = 1;
public const RELEASE_VERSION = 12;
public const RELEASE_VERSION = 13;
public const EXTRA_VERSION = '';
public const VERSION_NUMBER = self::VERSION_ID; //-- Alias of VERSION_ID
public const TEXT_DOMAIN_DEFAULT = 'app_default';
Expand Down

0 comments on commit 09603d0

Please sign in to comment.