Skip to content

Commit

Permalink
Prepare for 3.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
xcompass committed Jan 19, 2021
1 parent d41b19f commit 358278f
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/config/core.php
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@
$CWL['applicationID'] = '';
$CWL['applicationPassword'] = '';

define('IPEER_VERSION', '3.4.6');
define('IPEER_VERSION', '3.4.7');


/**
Expand Down
48 changes: 48 additions & 0 deletions app/libs/upgrade_scripts/upgrade_347.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?php
require_once('upgrade_base.php');
/**
* Upgrade347
*
* @uses UpgradeBase
* @package CTLT.iPeer
* @author Pan Luo
* @copyright 2021 All rights reserved.
* @license PHP Version 3.0 {@link http://www.php.net/license/3_0.txt}
* @version Release: 3.4.7
*/
class Upgrade347 extends UpgradeBase
{
/**
* __construct
*
* @access public
* @return void
*/
public function __construct()
{
$this->fromVersions = array(null, '3.4.6');
$this->toVersion = '3.4.7';
$this->dbVersion = 17;
}

/**
*
* @access public
* @return bool
*/
public function isUpgradable()
{
return parent::isUpgradable();
}

/**
* up
*
* @access public
* @return boolean
*/
public function up()
{
return true;
}
}
5 changes: 5 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,11 @@ You may optionally override the user default IRI (from `$base_url/users/view/$us

`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.

iPeer 3.4.7
-----------
* Increase PHP memory limit for docker container
* Fix logging issue for docker container

iPeer 3.4.6
-----------
* FIX mixeval edit (#660)
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.4.6
3.4.7

0 comments on commit 358278f

Please sign in to comment.