Skip to content

Commit

Permalink
Version 1.2.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
tfrommen committed Aug 2, 2017
1 parent a2afee2 commit 7181a4a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

-

## [1.2.1] - 2017-08-02

### Fixed

- Fix output buffering priority.

## [1.2.0] - 2017-07-30

WordPress.org release.
Expand Down Expand Up @@ -65,7 +71,8 @@ Initial release.

----

[Unreleased]: https://github.com/tfrommen/Dobby/compare/v1.2.0...HEAD
[Unreleased]: https://github.com/tfrommen/Dobby/compare/v1.2.1...HEAD
[1.2.1]: https://github.com/tfrommen/Dobby/compare/v1.2.0...v1.2.1
[1.2.0]: https://github.com/tfrommen/Dobby/compare/v1.1.1...v1.2.0
[1.1.1]: https://github.com/tfrommen/Dobby/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/tfrommen/Dobby/compare/v1.0.1...v1.1.0
Expand Down
4 changes: 2 additions & 2 deletions dobby.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Dobby, the friendly Admin Elf, takes care of all your (unwanted) admin notices.
* Author: Thorsten Frommen
* Author URI: https://tfrommen.de
* Version: 1.2.0
* Version: 1.2.1
* Text Domain: wp-dobby
* License: MIT
*/
Expand Down Expand Up @@ -47,7 +47,7 @@ function bootstrap() {
add_action( $action, function () {

ob_start();
}, PHP_INT_MAX + 1 );
}, (int) ( PHP_INT_MAX + 1 ) );

add_action( 'all_admin_notices', function () {

Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: tfrommen
Tags: admin, notices
Requires at least: 3.1.0
Tested up to: 4.8
Stable tag: v1.2.0
Stable tag: v1.2.1

Dobby, the friendly Admin Elf, takes care of all your (unwanted) admin notices.

Expand All @@ -29,6 +29,9 @@ This plugin requires **PHP 5.4**.

== Changelog ==

= 1.2.1 =
* Fix output buffering priority.

= 1.2.0 =
* WordPress.org release.

Expand Down

0 comments on commit 7181a4a

Please sign in to comment.