Skip to content

Commit

Permalink
Version 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
preslav-anev committed Sep 12, 2017
1 parent 4f0b701 commit 493abb6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
8 changes: 8 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Version 7.0.0
=====================
09/12/2017
1. Introduced configuration key - this breaks backward compatibility with older releases.
2. Removed the SALT phrase.
3. Introduced base85 encoding and decoding.
4. Added sha256 validation for the config key.

Version 6.5.4
=====================
08/14/2017
Expand Down
5 changes: 2 additions & 3 deletions src/Kount/Ris/Request/Update.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,9 @@ class Kount_Ris_Request_Update extends Kount_Ris_Request {
/**
* Update constructor, sets the "Inquiry" mode to "U".
* @param Kount_Ris_Settings $settings Configuration settings
* @param string $customSettings path to custom settings file.
*/
public function __construct ($customSettings = null, $settings = null) {
parent::__construct($customSettings, $settings);
public function __construct ($settings = null) {
parent::__construct($settings);
// defaults
$this->setMode(self::MODE_U);
}
Expand Down
4 changes: 2 additions & 2 deletions src/settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ VERSION_NUMBER=0695

; SDK release version
; Set the sdk release version which will be used for git tagging in github
SDK_VERSION=6.5.4
SDK_VERSION=7.0.0

; Kount Ris config key
; Set the config key and surround it with single or double quotation
Expand Down Expand Up @@ -65,5 +65,5 @@ SIMPLE_LOG_PATH=

;Logging variable to configure the logging of client-side timing metrics.
;Default value is OFF. Can be set to ON which will enable the logging when creating a RIS Request to Kount.
SIMPLE_LOG_RIS_METRICS=ON
SIMPLE_LOG_RIS_METRICS=OFF

0 comments on commit 493abb6

Please sign in to comment.