Skip to content
This repository has been archived by the owner on May 3, 2022. It is now read-only.

Commit

Permalink
Bump to v1.4.2
Browse files Browse the repository at this point in the history
1. Fix Composer vendor directory path
  • Loading branch information
Aaron Huisinga committed Dec 6, 2016
1 parent ad4b54a commit cac366b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion classes/class-frontdesk.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
if (!defined('ABSPATH')) exit; // Exit if accessed directly.

// Composer autoloader
require_once HOMES_REPORT_PLUGIN_PATH . '../vendor/autoload.php';
require_once HOMES_REPORT_PLUGIN_PATH . 'vendor/autoload.php';

use GuzzleHttp\Client;
use GuzzleHttp\Exception\RequestException;
Expand Down
2 changes: 1 addition & 1 deletion classes/class-homes-report.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
if (!defined('ABSPATH')) exit; // Exit if accessed directly.

// Composer autoloader
require_once HOMES_REPORT_PLUGIN_PATH . '../vendor/autoload.php';
require_once HOMES_REPORT_PLUGIN_PATH . 'vendor/autoload.php';

class HomesReport
{
Expand Down
4 changes: 2 additions & 2 deletions homes-report.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php namespace ColdTurkey\HomesReport;
/*
* Plugin Name: Homes Report
* Version: 1.4.1
* Version: 1.4.2
* Plugin URI: http://www.coldturkeygroup.com/
* Description: WordPress funnel that collects visitor contact information in exchange for a customized report from a Real Estate agent.
* Author: Cold Turkey Group
Expand All @@ -20,7 +20,7 @@
define('HOMES_REPORT_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));

if (!defined('HOMES_REPORT_PLUGIN_VERSION'))
define('HOMES_REPORT_PLUGIN_VERSION', '1.4.1');
define('HOMES_REPORT_PLUGIN_VERSION', '1.4.2');

require_once('classes/class-homes-report.php');

Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: Aaron Huisinga
Tags: real estate, platform, homes report
Requires at least: 3.5
Tested up to: 4.3
Stable tag: 1.4.1
Stable tag: 1.4.2

WordPress funnel that collects visitor contact information in exchange for a customized report from a Real Estate agent.

Expand Down

0 comments on commit cac366b

Please sign in to comment.