Skip to content

Commit aaeb82a

Browse files
committed
Bumped the version.
1 parent f385f43 commit aaeb82a

File tree

3 files changed

+33
-21
lines changed

3 files changed

+33
-21
lines changed

plugin.php

+10-9
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,19 @@
1313
* Text Domain: dfp-ads
1414
* Github Plugin URI: https://github.com/ThatGerber/dfp-ads
1515
* GitHub Branch: stable
16-
* Version: 0.3.0
16+
* Version: 0.3.1
1717
*
1818
* The Plugin File
1919
*
2020
* @link http://www.chriswgerber.com/dfp-ads
2121
* @since 0.0.1
2222
* @subpackage DFP-Ads
2323
*/
24-
/* Namespaces */
25-
use DFP_Ads\DFP_Ads as DFP_Ads;
26-
use DFP_Ads\Post_Type as DFP_Ads_Post_Type;
27-
use DFP_Ads\Admin\Input as DFP_Ads_Input;
28-
use DFP_Ads\Admin\Settings_Form as DFP_Ads_Settings_Form;
29-
use DFP_Ads\Admin\Import_Form as DFP_Ads_Import_Form;
30-
use DFP_Ads\Admin as DFP_Ads_Admin;
3124
/* Autoload */
3225
require_once 'vendor/autoload.php';
3326
/* Includes */
34-
include 'includes/Globals_Container.php';
3527
include 'includes/Functions.php';
28+
include 'includes/Globals_Container.php';
3629
include 'includes/DFP_Ads.php';
3730
include 'includes/Post_Type.php';
3831
include 'includes/Position.php';
@@ -42,6 +35,14 @@
4235
include 'includes/admin/Import_Form.php';
4336
include 'includes/admin/Admin.php';
4437
include 'widget/widget.ad_position.php';
38+
39+
/* Namespaces */
40+
use DFP_Ads\DFP_Ads as DFP_Ads;
41+
use DFP_Ads\Post_Type as DFP_Ads_Post_Type;
42+
use DFP_Ads\Admin\Input as DFP_Ads_Input;
43+
use DFP_Ads\Admin\Settings_Form as DFP_Ads_Settings_Form;
44+
use DFP_Ads\Admin\Import_Form as DFP_Ads_Import_Form;
45+
use DFP_Ads\Admin as DFP_Ads_Admin;
4546
/*
4647
* Initialization for Post Type
4748
*/

readme.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,16 @@ Below are a list of items that need to be completed before the plugin is ready f
8080
<a name="FAQ"></a>
8181
## Frequently Asked Questions
8282

83-
Submit your questions at [chriswgerber.com/contact/](http://www.chriswgerber.com/contact/)
83+
Submit your questions at [www.chriswgerber.com/contact/](http://www.chriswgerber.com/contact/)
8484

8585
<a name="Changelog"></a>
8686
## Changelog
8787

88+
### 0.3.1
89+
90+
* :bug: :gun: Widget not displays ad position correctly.
91+
* :100: Various code quality improvements.
92+
8893
### 0.3.0
8994

9095
* :new: Adds option to turn off asynchronous loading.

readme.txt

+17-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
=== DFP Ad Manager ===
22

3-
Stable tag: 0.3.0
3+
Stable tag: 0.3.1
44
Contributors: chriswgerber
55
Requires at least: 3.0.0
66
Tested up to: 4.2.2
@@ -54,40 +54,45 @@ Submit your questions at [chriswgerber.com/contact/](http://www.chriswgerber.com
5454

5555
== Upgrade Notice ==
5656

57-
There was an issue in the build process that has been fixed. Please upgrade immediately.
57+
Update fixes issue with widget rendering.
5858

5959
== Changelog ==
6060

61-
= 0.3.0
61+
= 0.3.1 =
62+
63+
* Bugfix - Widget not displays ad position correctly.
64+
* Enhancement - Various code quality improvements.
65+
66+
= 0.3.0 =
6267

6368
* New - Adds option to turn off asynchronous loading.
6469
* Enhancement - Adds class `dfp_ad_pos` to ad tags.
6570
* Bugfix - Fixes shortcode issue where content would always appear at the top of the content area.
6671

67-
= 0.2.5
72+
= 0.2.5 =
6873

69-
* [Bug Fix] Ad CPT was overriding page meta. Fix implemented resets post data after use of WP_Query.
74+
* Bugfix- Ad CPT was overriding page meta. Fix implemented resets post data after use of WP_Query.
7075

71-
= 0.2.4
76+
= 0.2.4 =
7277

7378
* Fixes build
7479

75-
= 0.2.3
80+
= 0.2.3 =
7681

7782
* Bug fix
7883

79-
= 0.2.2
84+
= 0.2.2 =
8085

8186
* Fixed issue where settings were not being called.
8287

83-
= 0.2.1
88+
= 0.2.1 =
8489

8590
* Bug Fix: Added extra check to make sure plugin didn't attempt to add other CPTs as ad positions.
8691
* Enhancement: Added linting and uglifying to JS. Now serving minified JS.
8792
* Enhancement: Updated directory structure
8893
* Enhancement: Updated Readme to include screenshots and more information.
8994

90-
= 0.2.0
95+
= 0.2.0 =
9196

9297
* Added functionality for importing DFP Ads
9398
* Added Travis CI Integration.
@@ -98,5 +103,6 @@ There was an issue in the build process that has been fixed. Please upgrade imme
98103
* Added Asynchronous ad loading
99104
* Made plugin compatible with PHP 5.3
100105

101-
= 0.1.0
106+
= 0.1.0 =
107+
102108
* Initial Pre-Release

0 commit comments

Comments
 (0)