Skip to content
This repository has been archived by the owner on Feb 6, 2020. It is now read-only.

Commit

Permalink
Merge branch 'release/1.2.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
remcotolsma committed Aug 4, 2015
2 parents 26c573c + 771ea85 commit 0868c8a
Show file tree
Hide file tree
Showing 17 changed files with 169 additions and 141 deletions.
44 changes: 30 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,35 @@
# Changelog
# Change Log

## 1.2.1
* Fix fatal error due to undefined var $result.
All notable changes to this project will be documented in this file.

## 1.2.0
* Added support for direct transaction request for iDEAL.
This projects adheres to [Semantic Versioning](http://semver.org/) and [Keep a CHANGELOG](http://keepachangelog.com/).

## 1.1.1
* Updated WordPress pay core library to version 1.1.1.
* If payment description is empty the payment ID is used.
## [Unreleased][unreleased]
-

## 1.1.0
* Updated WordPress pay core library to version 1.1.0.
* Updated WordPress pay MultiSafepay library to version 1.1.0.
* Fixed isues with filter_input INPUT_SERVER (https://bugs.php.net/bug.php?id=49184).
## [1.2.2] - 2015-08-04
- Make sure to use the wp-pay/core functions.

## 1.0.0
* First release.
## [1.2.1] - 2015-05-08
- Fix fatal error due to undefined var $result.

## [1.2.0] - 2015-05-06
- Added support for direct transaction request for iDEAL.

## [1.1.1] - 2015-03-26
- Updated WordPress pay core library to version 1.1.1.
- If payment description is empty the payment ID is used.

## [1.1.0] - 2015-02-27
- Updated WordPress pay core library to version 1.1.0.
- Updated WordPress pay MultiSafepay library to version 1.1.0.
- Fixed isues with filter_input INPUT_SERVER (https://bugs.php.net/bug.php?id=49184).

## 1.0.0 - 2015-01-19
- First release.

[unreleased]: https://github.com/wp-pay-gateways/multisafepay-connect/compare/1.2.1...HEAD
[1.2.1]: https://github.com/wp-pay-gateways/multisafepay-connect/compare/1.2.0...1.2.1
[1.2.0]: https://github.com/wp-pay-gateways/multisafepay-connect/compare/1.1.1...1.2.0
[1.1.1]: https://github.com/wp-pay-gateways/multisafepay-connect/compare/1.1.0...1.1.1
[1.1.0]: https://github.com/wp-pay-gateways/multisafepay-connect/compare/1.0.0...1.1.0
10 changes: 4 additions & 6 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
module.exports = function( grunt ) {
require( 'load-grunt-tasks' )( grunt );

// Project configuration.
grunt.initConfig( {
// Package
Expand All @@ -21,7 +23,8 @@ module.exports = function( grunt ) {
],
},
options: {
standard: 'phpcs.ruleset.xml'
standard: 'phpcs.ruleset.xml',
showSniffCodes: true
}
},

Expand All @@ -48,11 +51,6 @@ module.exports = function( grunt ) {
},
} );

grunt.loadNpmTasks( 'grunt-contrib-jshint' );
grunt.loadNpmTasks( 'grunt-phpcs' );
grunt.loadNpmTasks( 'grunt-phplint' );
grunt.loadNpmTasks( 'grunt-phpmd' );

// Default task(s).
grunt.registerTask( 'default', [ 'jshint', 'phplint', 'phpmd', 'phpcs' ] );
};
Loading

0 comments on commit 0868c8a

Please sign in to comment.