Skip to content

Commit

Permalink
Version 4.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rilwis committed Jul 5, 2017
1 parent 9e28b76 commit 5ab7fe7
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

## [Unreleased]

## [4.12] - 2017-04-07
## [4.12.1] - 2017-07-05
### Fixed
- Helper function doesn't work. #1144.

## [4.12] - 2017-07-04
### Added
- Completed the storage abstraction. All the actions add/get/update/delete post meta now use the storage methods. Make it easy to extend for other extensions for term/user meta and settings pages.
- Added `autofocus`, `autocomplete` HTML5 attribute to inputs.
Expand Down Expand Up @@ -680,7 +684,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
## 1.0
- procedural code

[Unreleased]: https://github.com/rilwis/meta-box/compare/4.12...HEAD
[Unreleased]: https://github.com/rilwis/meta-box/compare/4.12.1...HEAD
[4.12.1]: https://github.com/rilwis/meta-box/compare/4.12...4.12.1
[4.12]: https://github.com/rilwis/meta-box/compare/4.11.3...4.12
[4.11.3]: https://github.com/rilwis/meta-box/compare/4.11.2...4.11.3
[4.11.2]: https://github.com/rilwis/meta-box/compare/4.11.1...4.11.2
Expand Down
2 changes: 1 addition & 1 deletion inc/loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class RWMB_Loader {
*/
protected function constants() {
// Script version, used to add version for scripts and styles.
define( 'RWMB_VER', '4.12' );
define( 'RWMB_VER', '4.12.1' );

list( $path, $url ) = self::get_path( dirname( dirname( __FILE__ ) ) );

Expand Down
2 changes: 1 addition & 1 deletion meta-box.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Meta Box
* Plugin URI: https://metabox.io
* Description: Create custom meta boxes and custom fields in WordPress.
* Version: 4.12
* Version: 4.12.1
* Author: MetaBox.io
* Author URI: https://metabox.io
* License: GPL2+
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": "meta-box",
"version": "4.12",
"version": "4.12.1",
"description": "A powerful, professional developer toolkit to create custom meta boxes and custom fields for WordPress websites.",
"keywords": [
"meta box",
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,11 @@ To getting started with the plugin, please read [this tutorial](https://metabox.

== Changelog ==

= 4.12 - 2017-04-07 =
= 4.12.1 - 2017-07-05 =
#### Fixed
- Helper function doesn't work. #1144.

= 4.12 - 2017-07-04 =
#### Added
- Completed the storage abstraction. All the actions add/get/update/delete post meta now use the storage methods. Make it easy to extend for other extensions for term/user meta and settings pages.
- Added `autofocus`, `autocomplete` HTML5 attribute to inputs.
Expand Down

0 comments on commit 5ab7fe7

Please sign in to comment.