Skip to content

Commit b21bdf7

Browse files
committed
Prep for 0.3.1 release
1 parent eaf13e3 commit b21bdf7

File tree

6 files changed

+12
-13
lines changed

6 files changed

+12
-13
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
This is a boilerplate WordPress plugin featuring namespace autoloading and integration with [Carbon Fields](https://github.com/htmlburger/carbon-fields). It is intended to be used as a starting point for creating WordPress plugins. It contains several examples and dependencies to get you started.
1313

14-
It may also be used as the means of [separating custom code](http://www.billerickson.net/core-functionality-plugin/) from the theme.
14+
It may also be used as the means of [separating custom code](http://www.billerickson.net/core-functionality-plugin/) from the theme or [extending a child theme](https://www.wp-code.com/wordpress-snippets/wordpress-grandchildren-themes/).
1515

1616
### Contributing
1717

@@ -77,9 +77,7 @@ Release changes are noted on the [Releases](https://github.com/dmhendricks/wordp
7777

7878
#### Branch: `master`
7979

80-
* Added Carbon Fields [Serialized Datastore](https://github.com/dmhendricks/wordpress-base-plugin/wiki/Features-&-Customization#serialized-data-store) example
81-
* Fixed bugs with example widget scope
82-
* Updated compatibility for Carbon Fields 2.1.1
80+
* None since release
8381

8482
## Credits
8583

app/Datastores/Serialized_Theme_Options_Datastore.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
use Carbon_Fields\Datastore\Datastore;
55

66
/**
7-
* Stores serialized values in the database
8-
*/
7+
* Stores serialized values in the database
8+
* @see https://carbonfields.net/docs/guides-serialized-datastore/
9+
* @since 0.3.1
10+
*/
911
class Serialized_Theme_Options_Datastore extends Datastore {
1012

1113
/**
1214
* Initialization tasks for concrete datastores.
1315
**/
14-
public function init() {
15-
16-
}
16+
public function init() { }
1717

1818
protected function get_key_for_field( Field $field ) {
1919
$key = '_' . $field->get_base_name();

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "dmhendricks/wordpress-base-plugin",
33
"type": "wordpress-plugin",
44
"description": "A bloilerplate for WordPress plugins",
5+
"version": "0.3.1",
56
"keywords": ["wordpress", "plugin", "boilerplate", "carbonfields"],
67
"homepage": "https://2lab.net",
78
"license": "GPL-2.0",

plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"dependencies": {
99
"php": "5.6",
10-
"carbon_fields": "2.1.0"
10+
"carbon_fields": "2.1.1"
1111
},
1212
"encrypt_method": "AES-128-ECB"
1313
}

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: wordpress,base,plugin,boilerplate,composer,carbonfields
44
Donate link: https://paypal.me/danielhendricks
55
Requires at least: 4.0
66
Tested up to: 4.9
7-
Stable tag: 0.3.0
7+
Stable tag: 0.3.1
88
License: GPL-2.0
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

wordpress-base-plugin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Plugin Name: WordPress Base Plugin
55
* Plugin URI: https://github.com/dmhendricks/wordpress-base-plugin
66
* Description: A boilerplate for WordPress plugins
7-
* Version: 0.3.0
7+
* Version: 0.3.1
88
* Author: Daniel M. Hendricks
99
* Author URI: https://www.danhendricks.com
1010
* License: GPL-2.0
@@ -14,7 +14,7 @@
1414
* GitHub Plugin URI: dmhendricks/wordpress-base-plugin
1515
*/
1616

17-
/* Copyright 2017 Daniel M. Hendricks (https://www.danhendricks.com/)
17+
/* Copyright 2018 Daniel M. Hendricks (https://www.danhendricks.com/)
1818
1919
This program is free software; you can redistribute it and/or
2020
modify it under the terms of the GNU General Public License

0 commit comments

Comments
 (0)