SOP.wtf/includes/version.php

21 lines
441 B
PHP
Raw Permalink Normal View History

2022-09-23 23:28:07 -07:00
<?php
/**
* YOURLS version
*
* Must be one of the following :
* MAJOR.MINOR (eg 1.8)
* MAJOR.MINOR.PATCH (1.8.1)
* MAJOR.MINOR-SOMETHING (1.8-dev)
* MAJOR.MINOR.PATCH-SOMETHING (1.8.1-donotuse)
*
*/
2023-05-01 19:51:20 -07:00
define( 'YOURLS_VERSION', '1.9.2' );
2022-09-23 23:28:07 -07:00
/**
* YOURLS DB version. Increments when changes are made to the DB schema, to trigger a DB update
*
* Must be a string of an integer.
*
*/
define( 'YOURLS_DB_VERSION', '506' );