Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
frozzare committed Nov 30, 2015
1 parent ae73429 commit 814db90
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Papi Changelog

## [2.4.9](https://github.com/wp-papi/papi/releases/tag/v2.4.9) - 2015-11-30

Fixed: Apostrophe fix did cause a save error when using flexible and repeater.

## [2.4.8](https://github.com/wp-papi/papi/releases/tag/v2.4.8) - 2015-11-30

Fixed: String issue with `$page` variable in `papi_get_post_type`
Expand Down
2 changes: 1 addition & 1 deletion dist/css/style.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/main.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "papi",
"version": "2.4.8",
"version": "2.4.9",
"repository": "wp-papi/papi",
"description": "Page Type API with custom fields",
"author": "Fredrik Forsmo <fredrik.forsmo@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion papi-loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Page Type API with custom fields
* Author: Fredrik Forsmo
* Author URI: http://forsmo.me
* Version: 2.4.8
* Version: 2.4.9
* Plugin URI: https://wp-papi.github.io
* Textdomain: papi
* Domain Path: /languages/
Expand Down
4 changes: 2 additions & 2 deletions src/admin/class-papi-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function __construct() {
* @codeCoverageIgnore
*/
public function __clone() {
_doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'papi' ), '2.4.8' );
_doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'papi' ), '2.4.9' );
}

/**
Expand All @@ -52,7 +52,7 @@ public function __clone() {
* @codeCoverageIgnore
*/
public function __wakeup() {
_doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'papi' ), '2.4.8' );
_doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'papi' ), '2.4.9' );
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/papi-loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ private function __construct() {
* @codeCoverageIgnore
*/
public function __clone() {
_doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'papi' ), '2.4.8' );
_doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'papi' ), '2.4.9' );
}

/**
Expand All @@ -74,7 +74,7 @@ public function __clone() {
* @codeCoverageIgnore
*/
public function __wakeup() {
_doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'papi' ), '2.4.8' );
_doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'papi' ), '2.4.9' );
}

/**
Expand Down

0 comments on commit 814db90

Please sign in to comment.