Skip to content
This repository was archived by the owner on Mar 12, 2022. It is now read-only.

Commit 62498bb

Browse files
authored
Merge pull request #20 from 10up/release/3.3.1
Release/3.3.1
2 parents e2347ac + 2834a4a commit 62498bb

File tree

7 files changed

+57
-29
lines changed

7 files changed

+57
-29
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
- name: Checkout
1818
uses: actions/checkout@v2
1919
- name: PHPCS check
20-
uses: 10up/wpcs-action@master
20+
uses: 10up/wpcs-action@stable

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,16 @@
33
All notable changes to this project will be documented in this file, per [the Keep a Changelog standard](http://keepachangelog.com/).
44

55
## [Unreleased] - TBD
6+
7+
## [3.3.1] - TBD
8+
**Note that this release replaces references of `master` with `trunk` so please plan to update any references you have from `master` to `trunk` to ensure you continue to receive the latest updates on this plugin.**
9+
610
### Changed
7-
- Bump WordPress version "tested up to" 5.9 (props [@sudip-10up](https://github.com/sudip-10up) via []().
11+
- Bump WordPress version “tested up to” 5.9 (props [David Chabbi](https://profiles.wordpress.org/davidchabbi/), [@jeffpaul](https://github.com/jeffpaul), [@ciprianimike](https://github.com/ciprianimike), [@sudip-10up](https://github.com/sudip-10up) via [#12](https://github.com/10up/mce-table-buttons/pull/12), [#18](https://github.com/10up/mce-table-buttons/pull/18), [#23](https://github.com/10up/mce-table-buttons/pull/23)).
12+
- Updated documentation including new GitHub Actions (props [@jeffpaul](https://github.com/jeffpaul), [@dinhtungdu](https://github.com/dinhtungdu) via [#5](https://github.com/10up/mce-table-buttons/pull/5), [#13](https://github.com/10up/mce-table-buttons/pull/13), [#15](https://github.com/10up/mce-table-buttons/pull/15)).
813

914
### Fixed
10-
- Issues reported by PHPCS WPCS v2.3.0 addressed (props []() via []()).
15+
- Issues reported by PHPCS WPCS v2.3.0 (props [@ciprianimike](https://github.com/ciprianimike), [@dinhtungdu](https://github.com/dinhtungdu) via [#17](https://github.com/10up/mce-table-buttons/pull/17)).
1116

1217
## [3.3] - 2018-06-15
1318
### Changed
@@ -69,6 +74,7 @@ All notable changes to this project will be documented in this file, per [the Ke
6974
- Initial plugin release :tada:
7075

7176
[Unreleased]: https://github.com/10up/mce-table-buttons/compare/trunk...develop
77+
[3.3.1]: https://github.com/10up/mce-table-buttons/compare/3.3...3.3.1
7278
[3.3]: https://github.com/10up/mce-table-buttons/commit/7b1f57e
7379
[3.2]: https://plugins.trac.wordpress.org/changeset/971857/
7480
[3.1]: https://plugins.trac.wordpress.org/changeset/924344/

CONTRIBUTING.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,16 @@ The `develop` branch is the development branch which means it contains the next
2929
## Release instructions
3030

3131
1. Branch: Starting from `develop`, cut a release branch named `release/X.Y.Z` for your changes.
32-
2. Version bump: Bump the version number in `mce_table_buttons.php` and `readme.txt` if it does not already reflect the version being released.
33-
3. Changelog: Add/update the changelog in both `readme.txt` and `CHANGELOG.md`.
34-
4. New files: Check to be sure any new files/paths that are unnecessary in the production version are included in `.distignore`.
35-
5. Readme updates: Make any other readme changes as necessary. `CHANGELOG.md` and `README.md` are geared toward GitHub and `readme.txt` contains WordPress.org-specific content. The two are slightly different.
36-
6. Merge: Make a non-fast-forward merge from `develop` to `trunk` (`git checkout trunk && git merge --no-ff develop`).
37-
7. Release: Create a [new release](https://github.com/10up/mce-table-buttons/releases/new), naming the tag and the release with the new version number. Paste the changelog from `CHANGELOG.md` into the body of the release and include a link to the closed issues on the milestone (e.g. `https://github.com/10up/mce-table-buttons/milestone/1?closed=1`). Close the milestone.
38-
8. SVN: Wait for the [GitHub Action](https://github.com/10up/mce-table-buttons/actions) to finish deploying to the WordPress.org repository. If all goes well, users with SVN commit access for that plugin will receive an emailed diff of changes.
39-
9. Check WordPress.org: Ensure that the changes are live on [https://wordpress.org/plugins/mce-table-buttons/](https://wordpress.org/plugins/mce-table-buttons/). This may take a few minutes.
40-
10. Close milestone: Edit the [X.Y.Z milestone](https://github.com/10up/mce-table-buttons/milestone/#) with release date (in the `Due date (optional)` field) and link to GitHub release (in the `Description` field), then close `X.Y.Z` milestone.
41-
11. Punt incomplete items: If any open issues or PRs which were milestoned for `X.Y.Z` do not make it into the release, update their milestone to `X.Y.Z+1`, `X.Y+1.0`, `X+1.0.0` or `Future Release`.
32+
1. Version bump: Bump the version number in `class-mce-table-buttons.php` and `readme.txt` if it does not already reflect the version being released.
33+
1. Changelog: Add/update the changelog in both `CHANGELOG.md` and `readme.txt`.
34+
1. Props: update `CREDITS.md` with any new contributors, confirm maintainers are accurate.
35+
1. New files: Check to be sure any new files/paths that are unnecessary in the production version are included in `.distignore`.
36+
1. Readme updates: Make any other readme changes as necessary. `README.md` are geared toward GitHub and `readme.txt` contains WordPress.org-specific content. The two are slightly different.
37+
1. Merge: Make a non-fast-forward merge from your release branch to `develop` (or merge the pull request), then do the same for `develop` into `trunk` (`git checkout trunk && git merge --no-ff develop`). `trunk` contains the latest stable release.
38+
1. Test: Run through common tasks while on `trunk` to be sure it functions correctly.
39+
1. Push: Push your `trunk` branch to GitHub (e.g. `git push origin trunk`).
40+
1. Release: Create a [new release](https://github.com/10up/mce-table-buttons/releases/new), naming the tag and the release with the new version number, and targeting the `trunk` branch. Paste the changelog from `CHANGELOG.md` into the body of the release and include a link to the [closed issues on the milestone](https://github.com/10up/mce-table-buttons/milestone/#?closed=1).
41+
1. SVN: Wait for the [GitHub Action](https://github.com/10up/mce-table-buttons/actions/workflows/dotorg-push-deploy.yml) to finish deploying to the WordPress.org repository. If all goes well, users with SVN commit access for that plugin will receive an emailed diff of changes.
42+
1. Check WordPress.org: Ensure that the changes are live on [https://wordpress.org/plugins/mce-table-buttons/](https://wordpress.org/plugins/mce-table-buttons/). This may take a few minutes.
43+
1. Close milestone: Edit the [milestone](https://github.com/10up/mce-table-buttons/milestone/#) with release date (in the `Due date (optional)` field) and link to GitHub release (in the `Description` field), then close the milestone.
44+
1. Punt incomplete items: If any open issues or PRs which were milestoned for `X.Y.Z` do not make it into the release, update their milestone to `X.Y.Z+1`, `X.Y+1.0`, `X+1.0.0` or `Future Release`.

CREDITS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ The following acknowledges the Maintainers for this repository, those who have C
44

55
The following individuals are responsible for curating the list of issues, responding to pull requests, and ensuring regular releases happen.
66

7-
[Helen Hou-Sandi (@helen)](https://github.com/helen) and [Jeffrey Paul (@jeffpaul)](https://github.com/jeffpaul).
7+
[Jeffrey Paul (@jeffpaul)](https://github.com/jeffpaul).
88

99
## Contributors
1010

1111
Thank you to all the people who have already contributed to this repository via bug reports, code, design, ideas, project management, translation, testing, etc.
1212

13-
[Jake Goldman (@jakemgold)](https://github.com/jakemgold), [Helen Hou-Sandi (@helen)](https://github.com/helen), [Adam Silverstein (@adamsilverstein)](https://github.com/adamsilverstein), [Jeffrey Paul (@jeffpaul)](https://github.com/jeffpaul), [David Chabbi (@davidchabbi)](https://profiles.wordpress.org/davidchabbi/), [Sudip Dadhaniya (@sudip-10up)](https://github.com/sudip-10up).
13+
[Jake Goldman (@jakemgold)](https://github.com/jakemgold), [Helen Hou-Sandi (@helen)](https://github.com/helen), [Adam Silverstein (@adamsilverstein)](https://github.com/adamsilverstein), [Jeffrey Paul (@jeffpaul)](https://github.com/jeffpaul), [David Chabbi (@davidchabbi)](https://profiles.wordpress.org/davidchabbi/), [Michele Cipriani (@ciprianimike)](https://github.com/ciprianimike), [Tung Du (@dinhtungdu)](https://github.com/dinhtungdu), [Sudip Dadhaniya (@sudip-10up)](https://github.com/sudip-10up).
1414

1515
## Libraries
1616

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> Adds table editing controls to the visual content editor (TinyMCE).
44
5-
[![Support Level](https://img.shields.io/badge/support-stable-blue.svg)](#support-level) [![Release Version](https://img.shields.io/github/release/10up/mce-table-buttons.svg)](https://github.com/10up/mce-table-buttons/releases/latest) ![WordPress tested up to version](https://img.shields.io/wordpress/plugin/tested/mce-table-buttons?label=WordPress) [![GPLv2 License](https://img.shields.io/github/license/10up/mce-table-buttons.svg)](https://github.com/10up/mce-table-buttons/blob/develop/LICENSE.md)
5+
[![Support Level](https://img.shields.io/badge/support-stable-blue.svg)](#support-level) [![Linting](https://github.com/10up/mce-table-buttons/actions/workflows/lint.yml/badge.svg)](https://github.com/10up/mce-table-buttons/actions/workflows/lint.yml) [![Release Version](https://img.shields.io/github/release/10up/mce-table-buttons.svg)](https://github.com/10up/mce-table-buttons/releases/latest) ![WordPress tested up to version](https://img.shields.io/wordpress/plugin/tested/mce-table-buttons?label=WordPress) [![GPLv2 License](https://img.shields.io/github/license/10up/mce-table-buttons.svg)](https://github.com/10up/mce-table-buttons/blob/develop/LICENSE.md)
66

77
## Overview
88

class-mce-table-buttons.php

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
<?php
22
/**
3-
* Plugin Name: MCE Table Buttons
4-
* Plugin URI: http://10up.com/plugins-modules/wordpress-mce-table-buttons/
5-
* Description: Add <strong>controls for table editing</strong> to the visual content editor with this <strong>light weight</strong> plug-in.
6-
* Version: 3.3
7-
* Author: Jake Goldman, 10up, Oomph
8-
* Author URI: http://10up.com
9-
* License: GPLv2 or later
3+
* MCE Table Buttons
104
*
11-
* @package MCETableButtons
5+
* @package MCETableButtons
6+
*
7+
* @wordpress-plugin
8+
* Plugin Name: MCE Table Buttons
9+
* Plugin URI: http://10up.com/plugins-modules/wordpress-mce-table-buttons/
10+
* Description: Add <strong>controls for table editing</strong> to the visual content editor with this <strong>light weight</strong> plug-in.
11+
* Version: 3.3.1
12+
* Requires at least: 4.0
13+
* Requires PHP:
14+
* Author: Jake Goldman, 10up, Oomph
15+
* Author URI: https://10up.com
16+
* License: GPL v2 or later
17+
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
1218
*/
1319

1420
/**

readme.txt

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
=== MCE Table Buttons ===
2-
Contributors: 10up, jakemgold, helen, thinkoomph
3-
Donate link: http://10up.com/plugins-modules/wordpress-mce-table-buttons/
4-
Tags: tables, table, editor, WYSIWYG, buttons, tinymce
2+
Contributors: 10up, jakemgold, helen, thinkoomph
3+
Donate link: http://10up.com/plugins-modules/wordpress-mce-table-buttons/
4+
Tags: tables, table, editor, WYSIWYG, buttons, tinymce, classic editor
55
Requires at least: 4.0
6-
Tested up to: 5.9
7-
Stable tag: 3.3
6+
Tested up to: 5.9
7+
Stable tag: 3.3.1
8+
Requires PHP:
9+
License: GPLv2 or later
10+
License URI: https://www.gnu.org/licenses/gpl-2.0.html
811

912
Adds table editing controls to the visual content editor (TinyMCE).
1013

@@ -29,6 +32,13 @@ Note that the table controls are contained in the “kitchen sink” toolbar, to
2932

3033
== Changelog ==
3134

35+
= 3.3.1 =
36+
**Note that this release replaces references of `master` with `trunk` so please plan to update any references you have from `master` to `trunk` to ensure you continue to receive the latest updates on this plugin.**
37+
38+
* **Changed:** Bump WordPress version “tested up to” 5.8 (props [David Chabbi](https://profiles.wordpress.org/davidchabbi/), [@jeffpaul](https://github.com/jeffpaul), [@ciprianimike](https://github.com/ciprianimike)).
39+
* **Changed:** Updated documentation including new GitHub Actions (props [@jeffpaul](https://github.com/jeffpaul), [@dinhtungdu](https://github.com/dinhtungdu)).
40+
* **Fixed:** Issues reported by PHPCS WPCS v2.3.0 (props [@ciprianimike](https://github.com/ciprianimike), [@dinhtungdu](https://github.com/dinhtungdu)).
41+
3242
= 3.3 =
3343
* Significantly update TinyMCE plugin from 4.1.x to 4.7.11
3444
* Drop support for WordPress 3.x, which means dropping TinyMCE 3.x and 4.0.x
@@ -72,5 +82,8 @@ Note that the table controls are contained in the “kitchen sink” toolbar, to
7282

7383
== Upgrade Notice ==
7484

85+
= 3.3.1 =
86+
This release replaces references of `master` with `trunk` so please plan to update any references you have from `master` to `trunk` to ensure you continue to receive the latest updates on this plugin.
87+
7588
= 1.5 =
7689
REQUIRES WordPress 3.3 or higher. Finally links table buttons row to kitchen sink!

0 commit comments

Comments
 (0)