Skip to content

Commit 358278f

Browse files
committed
Prepare for 3.4.7
1 parent d41b19f commit 358278f

File tree

4 files changed

+55
-2
lines changed

4 files changed

+55
-2
lines changed

app/config/core.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@
347347
$CWL['applicationID'] = '';
348348
$CWL['applicationPassword'] = '';
349349

350-
define('IPEER_VERSION', '3.4.6');
350+
define('IPEER_VERSION', '3.4.7');
351351

352352

353353
/**
+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<?php
2+
require_once('upgrade_base.php');
3+
/**
4+
* Upgrade347
5+
*
6+
* @uses UpgradeBase
7+
* @package CTLT.iPeer
8+
* @author Pan Luo
9+
* @copyright 2021 All rights reserved.
10+
* @license PHP Version 3.0 {@link http://www.php.net/license/3_0.txt}
11+
* @version Release: 3.4.7
12+
*/
13+
class Upgrade347 extends UpgradeBase
14+
{
15+
/**
16+
* __construct
17+
*
18+
* @access public
19+
* @return void
20+
*/
21+
public function __construct()
22+
{
23+
$this->fromVersions = array(null, '3.4.6');
24+
$this->toVersion = '3.4.7';
25+
$this->dbVersion = 17;
26+
}
27+
28+
/**
29+
*
30+
* @access public
31+
* @return bool
32+
*/
33+
public function isUpgradable()
34+
{
35+
return parent::isUpgradable();
36+
}
37+
38+
/**
39+
* up
40+
*
41+
* @access public
42+
* @return boolean
43+
*/
44+
public function up()
45+
{
46+
return true;
47+
}
48+
}

readme.md

+5
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,11 @@ You may optionally override the user default IRI (from `$base_url/users/view/$us
201201

202202
`CALIPER_ACTOR_UNIQUE_IDENTIFIER_PARAM`: Optionally set the actor's unique identifier using any column from the `user` table (ex: `username`, `id`, `email`). Will be inserted into the `CALIPER_ACTOR_BASE_URL` string.
203203

204+
iPeer 3.4.7
205+
-----------
206+
* Increase PHP memory limit for docker container
207+
* Fix logging issue for docker container
208+
204209
iPeer 3.4.6
205210
-----------
206211
* FIX mixeval edit (#660)

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.6
1+
3.4.7

0 commit comments

Comments
 (0)