Welcome to mirror list, hosted at ThFree Co, Russian Federation.

version.php « includes - github.com/YOURLS/YOURLS.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae24b8bb3913f1d900f6da57c8eb840a4b15bba1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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)
 *
 */
define( 'YOURLS_VERSION', '1.9.2-dev' );

/**
 * 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' );