Skip to content

Commit

Permalink
Version bump to v2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyvankooten committed Jul 20, 2014
1 parent 35454de commit 7343912
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
12 changes: 6 additions & 6 deletions mailchimp-for-wp.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: MailChimp for WordPress Lite
Plugin URI: https://dannyvankooten.com/mailchimp-for-wordpress/
Description: Lite version of MailChimp for WordPress. Adds various sign-up methods to your website.
Version: 2.0.4
Version: 2.0.5
Author: Danny van Kooten
Author URI: http://dannyvankooten.com
Text Domain: mailchimp-for-wp
Expand Down Expand Up @@ -42,15 +42,15 @@
function mc4wp_load_plugin() {

// don't load plugin if user has the premium version installed and activated
if( defined( "MC4WP_VERSION" ) ) {
if( defined( 'MC4WP_VERSION' ) ) {
return false;
}

// bootstrap the lite plugin
define( "MC4WP_LITE_VERSION", "2.0.4" );
define( "MC4WP_LITE_PLUGIN_DIR", plugin_dir_path( __FILE__ ) );
define( "MC4WP_LITE_PLUGIN_URL", plugins_url( '/' , __FILE__ ) );
define( "MC4WP_LITE_PLUGIN_FILE", __FILE__ );
define( 'MC4WP_LITE_VERSION', '2.0.5' );
define( 'MC4WP_LITE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'MC4WP_LITE_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
define( 'MC4WP_LITE_PLUGIN_FILE', __FILE__ );

require_once MC4WP_LITE_PLUGIN_DIR . 'includes/functions/general.php';
require_once MC4WP_LITE_PLUGIN_DIR . 'includes/functions/template.php';
Expand Down
20 changes: 16 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
=== MailChimp for WordPress ===
Contributors: DvanKooten
Contributors: DvanKooten, 12notions
Donate link: https://dannyvankooten.com/mailchimp-for-wordpress/
Tags: mailchimp,form,shortcode,widget,checkbox,comment,newsletter,buddypress,multisite,bbpress,woocommerce,easy digital downloads,contact form,contact form 7
Requires at least: 3.6
Tested up to: 3.9.1
Stable tag: 2.0.4
Stable tag: 2.0.5
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -217,6 +217,18 @@ Your theme folder can be found by browsing to `/wp-content/themes/your-theme-nam

== Changelog ==

= 2.0.5 - July 21, 2014 =

**Improvements**
- Ignore Captcha fields in sign-up data
- Updated Spanish translations
- Minor improvements to Admin and MailChimp API class
- Show field tag and required status in Lists overview table

**Additions**
- Add visitor IP address to sign-up data


= 2.0.4 - July 2, 2014 =

**Fixes**
Expand Down Expand Up @@ -446,5 +458,5 @@ Your theme folder can be found by browsing to `/wp-content/themes/your-theme-nam

== Upgrade Notice ==

= 2.0.4 =
Recommended update! Fixes double subscription requests for checkbox sign-ups.
= 2.0.5 =
Various minor improvements code and usability improvements.

0 comments on commit 7343912

Please # to comment.