Skip to content

Commit ace7056

Browse files
committed
Increment to version 0.3.0
1 parent 174ebd5 commit ace7056

File tree

4 files changed

+16
-9
lines changed

4 files changed

+16
-9
lines changed

classes/class-editorial-access-manager.php

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function __construct() {
1616
/**
1717
* Activation
1818
*
19-
* @since 0.2.1
19+
* @since 0.3.0
2020
*/
2121
public static function activation() {
2222
$roles = get_editable_roles();
@@ -29,7 +29,7 @@ public static function activation() {
2929
/**
3030
* Deactivation
3131
*
32-
* @since 0.2.1
32+
* @since 0.3.0
3333
*/
3434
public static function deactivation() {
3535
$roles = get_editable_roles();
@@ -67,7 +67,7 @@ public function setup() {
6767
/**
6868
* Return list of post types managed by the plugin
6969
*
70-
* @since 0.2.1
70+
* @since 0.3.0
7171
* @return array
7272
*/
7373
public function get_post_types() {
@@ -261,7 +261,9 @@ public function meta_box_access_manager( $post ) {
261261
/**
262262
* Output form for bulk editing
263263
*
264-
* @since 0.2.1
264+
* @since 0.3.0
265+
* @param string $column_name
266+
* @param string $post_type
265267
* @return object
266268
*/
267269
public function action_bulk_edit_custom_box( $column_name, $post_type ) {
@@ -276,7 +278,7 @@ public function action_bulk_edit_custom_box( $column_name, $post_type ) {
276278
* @param string $post_type
277279
* @param int $post_id
278280
* @param bool $bulk
279-
* @since 0.2.1
281+
* @since 0.3.0
280282
*/
281283
public function access_form( $post_type, $post_id = null, $bulk = true ) {
282284
global $wp_roles;

editorial-access-manager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Plugin URI: http://www.taylorlovett.com
55
* Description: Allow for granular editorial access control for all post types
66
* Author: Taylor Lovett
7-
* Version: 0.2.0
7+
* Version: 0.3.0
88
* Author URI: http://www.taylorlovett.com
99
*/
1010

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "editorial-access-manager-wp",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/tlovett1/editorial-access-manager.git"

readme.txt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: tlovett1
33
Donate link: http://www.taylorlovett.com
44
Tags: editorial access management, user roles, user capabilities, role management, user permissions, administrator permissions
55
Requires at least: 3.6
6-
Tested up to: 4.0
7-
Stable tag: 0.2.0
6+
Tested up to: 4.1
7+
Stable tag: 0.3.0
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -48,6 +48,11 @@ the sidebar.
4848

4949
== Changelog ==
5050

51+
= 0.3.0 =
52+
* Bulk edit access. Props [@marcochiesi](https://github.com/marcochiesi)
53+
* Filterable post types. Props [@marcochiesi](https://github.com/marcochiesi)
54+
* Custom capability to use EAM meta box. Props [@marcochiesi](https://github.com/marcochiesi)
55+
5156
= 0.2.0 =
5257
* Add Italian language support. Props [@marcochiesi](https://github.com/marcochiesi)
5358
* Add post table column to show editorial access. Props [@marcochiesi](https://github.com/marcochiesi)

0 commit comments

Comments
 (0)