Skip to content

Commit

Permalink
Merge pull request #65 from pantheon-systems/release-0.3.7
Browse files Browse the repository at this point in the history
Release 0.3.7
  • Loading branch information
pwtyler authored Dec 21, 2023
2 parents 6e5501e + d1b7594 commit 926b143
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
6 changes: 5 additions & 1 deletion README.MD
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.6
Stable tag: 0.3.7
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand All @@ -26,6 +26,10 @@ See the robots hard at work.

## Changelog

### 0.3.7 (21 December 2023)
* Update the Second Counter to 4 [[64](https://github.com/pantheon-systems/plugin-pipeline-example/pull/64)]
* Update the Counter to 12 [[66](https://github.com/pantheon-systems/plugin-pipeline-example/pull/66)]

### 0.3.6 (21 December 2023)
* Update the Second Counter to 3 [[62](https://github.com/pantheon-systems/plugin-pipeline-example/pull/62)]

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.3.6",
"version": "0.3.7",
"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.6
Stable tag: 0.3.7
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.7 (21 December 2023) =
* Update the Second Counter to 4 [[64](https://github.com/pantheon-systems/plugin-pipeline-example/pull/64)]

= 0.3.6 (21 December 2023) =
* Update the Second Counter to 3 [[62](https://github.com/pantheon-systems/plugin-pipeline-example/pull/62)]

Expand Down
8 changes: 4 additions & 4 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.6
* Version: 0.3.7
*
* @package Rossums_Universal_Robots
*/
Expand All @@ -17,7 +17,7 @@
*
* @since 0.3.0
*/
define( 'RUR_VERSION', '0.3.6' );
define( 'RUR_VERSION', '0.3.7' );

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

/**
Expand All @@ -36,5 +36,5 @@ function rur_counter() {
* @since 0.2.0
*/
function rur_another_counter() {
return 3;
return 4;
}

0 comments on commit 926b143

Please sign in to comment.