Skip to content

Commit

Permalink
Versioning for v1.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bfintal committed Dec 18, 2014
1 parent a33eb87 commit 068875e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ Titan Framework allows theme and plugin developers to create a admin pages, opti

## Recent Changelog

#### Version 1.7.2
* EDD option can now check for updates all by itself (thank you julien731)
* `get_post_types` function now callable from `tf_create_options`
* Now passes theme-check (ignored `add_menu_page` error)

#### Version 1.7.1
* Bug fixes for the Easy Digital Download License option
* Enhanced date option parameters
Expand Down Expand Up @@ -77,7 +82,7 @@ Let us know so we can showcase it in the site! Send me an email at bf.intal@gamb

## Contributing, Pull Requests Are Very Welcome

Have an idea for a cool option, or do you have a bug fix you want to implement? Please don't hessitate to place a *PR* (Pull Request).
Have an idea for a cool option, or do you have a bug fix you want to implement? Please don't hessitate to place a *PR* (Pull Request).

PRs on these are welcome:
* Bug fixes
Expand Down
7 changes: 6 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
Tags: framework, options, admin, admin panel, meta box, theme customizer, option framework, library, sdk, edd, settings, api, theme creator, theme framework
Requires at least: 3.8
Tested up to: 4.0.1
Stable tag: 1.7.1
Stable tag: 1.7.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -216,6 +216,11 @@ $myValue = $titan->getOption( 'option_name', $post_id );`

== Changelog ==

= 1.7.2 =
* EDD option can now check for updates all by itself (thank you julien731)
* `get_post_types` function now callable from `tf_create_options`
* Now passes theme-check (ignored `add_menu_page` error)

= 1.7.1 =
* Bug fixes for the Easy Digital Download License option
* Enhanced date option parameters
Expand Down
4 changes: 2 additions & 2 deletions titan-framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
Plugin URI: http://www.titanframework.net/
Description: Titan Framework allows theme and plugin developers to create a admin pages, options, meta boxes, and theme customizer options with just a few simple lines of code.
Author: Benjamin Intal, Gambit
Version: 1.7.1
Version: 1.7.2
Author URI: http://gambit.ph
*/

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

// Used for tracking the version used
defined( 'TF_VERSION' ) or define( 'TF_VERSION', '1.7.1' );
defined( 'TF_VERSION' ) or define( 'TF_VERSION', '1.7.2' );
// Used for text domains
defined( 'TF_I18NDOMAIN' ) or define( 'TF_I18NDOMAIN', 'titan-framework' );
// Used for general naming, e.g. nonces
Expand Down

0 comments on commit 068875e

Please sign in to comment.