Skip to content

Commit

Permalink
Version Bump to 1.1.1 (#274)
Browse files Browse the repository at this point in the history
* Update list of ignored files

* Fix versioninig

* Update branch reference

* Version bump

* Remove upload release asset
  • Loading branch information
ryelle committed Sep 10, 2020
1 parent 18054ff commit a663a32
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 16 deletions.
9 changes: 9 additions & 0 deletions .distignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,13 @@
/vendor

.distignore
.editorconfig
.gitignore
.nvmrc
.prettierrc.js
.travis.yml
composer.json
composer.lock
package-lock.json
phpcs.xml.dist
renovate.json
9 changes: 0 additions & 9 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,3 @@ jobs:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SLUG: recipe-block
- name: Upload release asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ${{github.workspace}}/${{ github.event.repository.name }}.zip
asset_name: ${{ github.event.repository.name }}.zip
asset_content_type: application/zip
6 changes: 3 additions & 3 deletions .github/workflows/readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Plugin asset/readme update
on:
push:
branches:
- main
- stable
jobs:
main:
name: Push to main
stable:
name: Push to stable
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "rmb-recipe-block",
"title": "Recipe Block",
"version": "1.1.0",
"version": "1.1.1",
"author": "Kelly Choyce-Dwan",
"license": "GPL-2.0-or-later",
"homepage": "https://ryelle.codes/",
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
=== Recipe Block ===
Contributors: ryelle
Stable tag: 1.1.0
Stable tag: 1.1.1
Requires at least: 5.5
Tested up to: 5.5
Requires PHP: 7.0
Expand Down Expand Up @@ -32,5 +32,9 @@ Plugin icon from [Material.](https://material.io/resources/icons/)

== Changelog ==

= 1.1.1 =
* Fix minor issue with version number
* Remove unnecessary development config files

= 1.1.0 =
* Initial release to WordPress.org
4 changes: 2 additions & 2 deletions rmb-recipe-block.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Recipe Block
* Plugin URI: https://github.com/ryelle/rmb-recipe-block
* Description: A block for displaying recipe content on your site.
* Version: 1.1.1-dev
* Version: 1.1.1
* Author: Kelly Choyce-Dwan
* Author URI: https://ryelle.codes
* Text Domain: rmb-recipe-block
Expand All @@ -12,7 +12,7 @@
*/

defined( 'ABSPATH' ) || die();
define( 'RMB_RECIPE_VERSION', '1.1.0' );
define( 'RMB_RECIPE_VERSION', '1.1.1' );

/**
* Load up the assets if the assets file exists
Expand Down

0 comments on commit a663a32

Please sign in to comment.