Skip to content

Commit

Permalink
Merge branch 'release/1.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
folbert committed Apr 24, 2016
2 parents 513af68 + a9e2d91 commit 7502b2f
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 9 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ The system was created for the following reasons:

* Install using Composer
> composer require folbert/fewbricks
I have set the repository type of the package to "wordpress-plugin" which may be good to know since you will want Fewbricks to end up in the plugins directory and not in the default vendor directory for Composer packages. If you want to get started using Composer with WordPress (and potentially stepping your WP game up in lots of other ways, I highly recommend using [Bedrock](https://roots.io/bedrock/) from the team behind Roots/[Sage](https://roots.io/sage/))

* Install manually by downloading [the latest release](/releases).
Expand Down
29 changes: 29 additions & 0 deletions RELEASEWORKFLOW.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Release Workflow
These are notes to make sure that Fewbricks developers doesn't forget anything when creating a new release.

Version number follows [Semantic Versioning](http://semver.org/)

## Git-Flow in Tower
[https://www.git-tower.com/learn/git/ebook/en/mac/advanced-topics/git-flow](https://www.git-tower.com/learn/git/ebook/en/mac/advanced-topics/git-flow)

Don't prefix tags with "v" since the repo was set up to auto prefix tags with "v".

## After release has been created on GitHub:

These steps are to make sure that a notice about the new version is displayed when listing plugins in the WordPress admin system.

* Download Zip from [https://github.com/folbert/fewbricks/releases](https://github.com/folbert/fewbricks/releases)
* Create directory "fewbricks"
* Put zip in "fewbricks" directory
* Unzip
* Rename unzipped dir to "fewbricks"
* Remove .gitignore from unzipped dir
* Zip parent dir so you now have a Zip named "fewbricks" with a dir named "fewbricks"
* Upload to fewbricks.folbert.com/update/zips/[version-nr]/
* Edit update.php:
* Update $obj->new_version
* Update $obj->last_updated
* Check $obj->tested
* Check $obj->requires
* Save
* Check folbert.com and force a plugin update check to make sure changes are correct
7 changes: 0 additions & 7 deletions TODO.md

This file was deleted.

3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Fewbricks changelog

## 1.1.1 - April 23, 2016
* Hotfix for Timber dependency in demo

## 1.1.0 - April 23, 2016
* Added autoupdate functionality when viewing the plugin in plugins list.

Expand Down
4 changes: 2 additions & 2 deletions fewbricks.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Plugin URI: https://github.com/fewagency/fewbricks
Description: A module extension to Advanced Custom Fields
Author: Björn Folbert
Version: 1.1.0
Version: 1.1.1
Author URI: http://folbert.com
License: GPLv3
*/
Expand All @@ -29,7 +29,7 @@
add_action('init', function() {

// set auto-update params
$plugin_current_version = '1.1.0';
$plugin_current_version = '1.1.1';
$plugin_remote_path = 'http://fewbricks.folbert.com/update/update.php';
$plugin_slug = plugin_basename(__FILE__);
$license_user = 'null';
Expand Down

0 comments on commit 7502b2f

Please sign in to comment.