Skip to content

Commit

Permalink
Bump version, update readmes, etc for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsternberg committed Nov 27, 2017
1 parent 98b74ab commit 4e2f900
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 15 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file.

### Enhancements

* Switching to the more communicative and standard [Semantic Versioning](https://semver.org/). ([#1061](https://github.com/CMB2/CMB2/issues/1061)).
* With 2.3.0, will be fully switching to the more communicative and standard [Semantic Versioning](https://semver.org/). ([#1061](https://github.com/CMB2/CMB2/issues/1061)).

### Bug Fixes

## [2.2.6.2 - 2017-11-24](https://github.com/CMB2/CMB2/releases/tag/v2.2.6.2)

### Bug Fixes

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
**Tags:** metaboxes, forms, fields, options, settings
**Requires at least:** 3.8.0
**Tested up to:** 4.9
**Stable tag:** 2.2.6.1
**Stable tag:** 2.2.6.2
**License:** GPLv2 or later
**License URI:** [http://www.gnu.org/licenses/gpl-2.0.html](http://www.gnu.org/licenses/gpl-2.0.html)

Expand Down
20 changes: 10 additions & 10 deletions init.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Bill Erickson (@billerickson / billerickson.net)
* Andrew Norcross (@norcross / andrewnorcross.com)
*
* Version: 2.2.6.1
* Version: 2.2.6.2
*
* Text Domain: cmb2
* Domain Path: languages
Expand Down Expand Up @@ -54,7 +54,7 @@
* ***********************************************************************
*/

if ( ! class_exists( 'CMB2_Bootstrap_227_Trunk', false ) ) {
if ( ! class_exists( 'CMB2_Bootstrap_2262', false ) ) {

/**
* Handles checking for and loading the newest version of CMB2
Expand All @@ -67,15 +67,15 @@
* @license GPL-2.0+
* @link https://cmb2.io
*/
class CMB2_Bootstrap_227_Trunk {
class CMB2_Bootstrap_2262 {

/**
* Current version number
*
* @var string
* @since 1.0.0
*/
const VERSION = '2.2.6.1';
const VERSION = '2.2.6.2';

/**
* Current version hook priority.
Expand All @@ -84,20 +84,20 @@ class CMB2_Bootstrap_227_Trunk {
* @var int
* @since 2.0.0
*/
const PRIORITY = 9971;
const PRIORITY = 9970;

/**
* Single instance of the CMB2_Bootstrap_227_Trunk object
* Single instance of the CMB2_Bootstrap_2262 object
*
* @var CMB2_Bootstrap_227_Trunk
* @var CMB2_Bootstrap_2262
*/
public static $single_instance = null;

/**
* Creates/returns the single instance CMB2_Bootstrap_227_Trunk object
* Creates/returns the single instance CMB2_Bootstrap_2262 object
*
* @since 2.0.0
* @return CMB2_Bootstrap_227_Trunk Single instance object
* @return CMB2_Bootstrap_2262 Single instance object
*/
public static function initiate() {
if ( null === self::$single_instance ) {
Expand Down Expand Up @@ -189,6 +189,6 @@ public function l10ni18n() {
}

// Make it so...
CMB2_Bootstrap_227_Trunk::initiate();
CMB2_Bootstrap_2262::initiate();

}// End if().
2 changes: 1 addition & 1 deletion languages/cmb2.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is distributed under the same license as the CMB2 package.
msgid ""
msgstr ""
"Project-Id-Version: CMB2 2.2.6.1\n"
"Project-Id-Version: CMB2 2.2.6.2\n"
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/cmb2\n"
"POT-Creation-Date: 2017-11-14 18:08:18+00:00\n"
"MIME-Version: 1.0\n"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cmb2",
"version": "2.2.6.1",
"version": "2.2.6.2",
"description": "CMB2 is a developer's toolkit for building metaboxes, custom fields, and forms for WordPress that will blow your mind.",
"main": "Gruntfile.js",
"directories": {
Expand Down
14 changes: 13 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://cmb2.io
Tags: metaboxes, forms, fields, options, settings
Requires at least: 3.8.0
Tested up to: 4.9
Stable tag: 2.2.6.1
Stable tag: 2.2.6.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -121,6 +121,12 @@ FAQ's usually end up in the [github wiki](https://github.com/CMB2/CMB2/wiki).

== Changelog ==

### 2.2.6.2

#### Bug Fixes

* Fix another issue (introduced in 2.2.6) with repeatable fields not being able to save additional fields. Props [@anhskohbo](https://github.com/anhskohbo) ([#1059](https://github.com/CMB2/CMB2/pull/1059), [#1058](https://github.com/CMB2/CMB2/issues/1058)).

### 2.2.6.1

#### Enhancements
Expand Down Expand Up @@ -788,6 +794,12 @@ It is now passed a null value vs saved value. If null is returned, default sanit

== Upgrade Notice ==

### 2.2.6.2

#### Bug Fixes

* Fix another issue (introduced in 2.2.6) with repeatable fields not being able to save additional fields. Props [@anhskohbo](https://github.com/anhskohbo) ([#1059](https://github.com/CMB2/CMB2/pull/1059), [#1058](https://github.com/CMB2/CMB2/issues/1058)).

### 2.2.6.1

#### Enhancements
Expand Down

0 comments on commit 4e2f900

Please sign in to comment.