Skip to content

Commit

Permalink
Merge pull request #53 from pantheon-systems/release-0.3.3
Browse files Browse the repository at this point in the history
Release 0.3.3
  • Loading branch information
pwtyler authored Dec 20, 2023
2 parents 771d5fd + ff34b2c commit d2c3075
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 182 deletions.
73 changes: 0 additions & 73 deletions .bin/prepare-dev.sh

This file was deleted.

100 changes: 0 additions & 100 deletions .bin/src/functions.sh

This file was deleted.

8 changes: 8 additions & 0 deletions .github/workflows/build-tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,11 @@ jobs:
build_node_assets: "true"
build_composer_assets: "true"
draft: "false"
prepare_dev:
name: Update Dev environment for the next versions
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Prepare Dev
uses: pantheon-systems/plugin-release-actions/prepare-dev@main
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


lint-shell:
shellcheck .bin/prepare-dev.sh .bin/release-pr.sh .bin/src/*
shellcheck .bin/release-pr.sh
lint: lint-shell
composer lint

Expand Down
17 changes: 16 additions & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,29 @@ Tags: comments, spam
Requires at least: 4.5
Tested up to: 6.2.1
Requires PHP: 5.6
Stable tag: 0.3.2
Stable tag: 0.3.3
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

See the robots hard at work.

## Actions Used

### Development Workflow
* [Build/Tag/Release](https://github.com/pantheon-systems/plugin-release-actions/)
* [Prepare Dev](https://github.com/pantheon-systems/plugin-release-actions/)
* [Release to WordPress.org](https://github.com/10up/action-wordpress-plugin-deploy) (10up)

### Linting and Testing
* [WordPress.org Code Analysis](https://github.com/pantheon-systems/action-wporg-validator/)
* [PHP Compatiblity](https://github.com/pantheon-systems/phpcompatibility-action/)
* [Validate Readme Spacing](https://github.com/pantheon-systems/validate-readme-spacing/)

## Changelog

### 0.3.3 (20 December 2023)
* Set Counter to 8 [[55](https://github.com/pantheon-systems/plugin-pipeline-example/pull/55)]

### 0.3.2 (20 December 2023)
* Set Counter to 7 [[52](https://github.com/pantheon-systems/plugin-pipeline-example/pull/52)]

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plugin-pipeline-example",
"version": "0.2.0",
"version": "0.3.2-dev",
"description": "A demo plugin to test and showcase github actions during plugin development and release",
"main": "Gruntfile.js",
"directories": {
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: comments, spam
Requires at least: 4.5
Tested up to: 6.2.1
Requires PHP: 5.6
Stable tag: 0.3.2
Stable tag: 0.3.3
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -68,6 +68,9 @@ directory take precedence. For example, `/assets/screenshot-1.png` would win ove

== Changelog ==

= 0.3.3 (20 December 2023) =
* Set Counter to 8 [[55](https://github.com/pantheon-systems/plugin-pipeline-example/pull/55)]

= 0.3.2 (20 December 2023) =
* Set Counter to 7 [[52](https://github.com/pantheon-systems/plugin-pipeline-example/pull/52)]

Expand Down
6 changes: 3 additions & 3 deletions rossums-universal-robots.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Author URI: pantheon.io
* Text Domain: rossums-universal-robots
* Domain Path: /languages
* Version: 0.3.2
* Version: 0.3.3
*
* @package Rossums_Universal_Robots
*/
Expand All @@ -17,7 +17,7 @@
*
* @since 0.3.0
*/
define( 'RUR_VERSION', '0.3.2' );
define( 'RUR_VERSION', '0.3.3' );

/**
* Returns an int. It's a feature.
Expand All @@ -26,7 +26,7 @@
* @since 0.1.1
*/
function rur_counter() {
return 7;
return 8;
}

/**
Expand Down

0 comments on commit d2c3075

Please sign in to comment.