Skip to content

Commit 56460a1

Browse files
committed
ci: Update version to v6.8.6
1 parent cc1f732 commit 56460a1

2 files changed

Lines changed: 20 additions & 1 deletion

File tree

core/base/update/updates.php

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,25 @@
3434
$updates = new stdClass();
3535

3636

37+
$v=686; #####################################################################################
38+
$updates->$v = new stdClass();
39+
40+
# UPDATE TO
41+
$updates->$v->version_major = 6;
42+
$updates->$v->version_medium = 8;
43+
$updates->$v->version_minor = 6;
44+
45+
# MINIMUM UPDATE FROM
46+
$updates->$v->update_from_major = 6;
47+
$updates->$v->update_from_medium = 8;
48+
$updates->$v->update_from_minor = 5;
49+
50+
// Re-index and vacuum tables
51+
$updates->$v->SQL_update[] = PHP_EOL.sanitize_query('
52+
VACUUM FULL VERBOSE ANALYZE public.matrix_ontology;
53+
');
54+
55+
3756
$v=685; #####################################################################################
3857
$updates->$v = new stdClass();
3958

core/base/version.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
// Version
4-
$DEDALO_VERSION = '6.8.5';
4+
$DEDALO_VERSION = '6.8.6';
55
if(defined('DEVELOPMENT_SERVER') && DEVELOPMENT_SERVER===true) {
66
$DEDALO_VERSION .= '.dev';
77
}

0 commit comments

Comments
 (0)