Lines Matching +full:date -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang)
36 …$options->registerOption('date', 'The date to use for the version. Defaults to today', null, 'YYYY…
63 …$current['file'] = ($current['type'] === 'rc' ? 'rc' : '') . $current['date'] . $current['hotfix'];
81 'date' => $options->getOpt('date'),
86 if (!$next['date']) $next['date'] = date('Y-m-d');
97 $next['date'] = $current['date'];
103 if (!preg_match('/^\d{4}-\d{2}-\d{2}$/', $next['date'])) {
104 throw new \splitbrain\phpcli\Exception('Invalid date format, use YYYY-MM-DD');
107 if ($current['date'] > $next['date']) {
108 … throw new \splitbrain\phpcli\Exception('Date must be equal or later than the last release');
121 $next['version'] = $next['date'] . ($next['type'] === 'rc' ? 'rc' : $next['hotfix']);
123 $next['date'] .