Skip to content

Commit

Permalink
bump version to 4.0-beta.3
Browse files Browse the repository at this point in the history
  • Loading branch information
contactjavas committed Nov 18, 2021
1 parent a7a607d commit 6f38e54
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 2 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
### 4.0-beta.3 - November 18, 2021 ###
Small bugfixes/changes:
* Update `googlefonts` package
* Update `control-react-colorful` package
* Fix notices & warnings in `module-webfonts` package when `get_font_choices` method is called.

### 4.0-beta.2 - November 04, 2021 ###
Bugfixes:
* The CSS output of `control-react-colorful` was empty when the value is a string
* On `control-radio`, the control id wasn't outputted causing broken behavior
* The sanitize callback of field-dimensions wasn't implemented
* Output on Gutenberg editing screen was affecting the whole page instead of only the editing content
* The margin-top & margin-bottom of `field-typography` wasn't rendered in frontend styles
* The `kirki/fonts/standard_fonts` wasn't implemented when it's hooked AFTER adding the fields (in user's usage)
* The default browser font-family (from v3) was missing
* The custom font families grouping was missing
* Custom variants set on standard fonts wasn't implemented

Improvement:
* The `control-react-select` choices now accept an array of objects (used by a variant in field-typography)

Refactor:
* Bring back the v3 style/model of font's variant in `field-typography`

### 4.0-beta.1 - 2021-10-15 ###
* Now controls are developed (and available) as composer packages
* Some controls are using React for their JS part
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@ If you want to integrate Kirki in your theme or plugin, please read the instruct

## Changelog ##

### 4.0-beta.3 - November 18, 2021 ###
Small bugfixes/changes:
* Update `googlefonts` package
* Update `control-react-colorful` package
* Fix notices & warnings in `module-webfonts` package when `get_font_choices` method is called.

### 4.0-beta.2 - November 04, 2021 ###
Bugfixes:
* The CSS output of `control-react-colorful` was empty when the value is a string
Expand Down
4 changes: 2 additions & 2 deletions kirki.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: The Ultimate WordPress Customizer Framework
* Author: David Vongries
* Author URI: https://wp-pagebuilderframework.com/
* Version: 4.0-beta.2
* Version: 4.0-beta.3
* Text Domain: kirki
* Requires WP: 4.9
* Requires PHP: 7.0
Expand Down Expand Up @@ -46,7 +46,7 @@

// Define the KIRKI_VERSION constant.
if ( ! defined( 'KIRKI_VERSION' ) ) {
define( 'KIRKI_VERSION', '4.0-beta.2' );
define( 'KIRKI_VERSION', '4.0-beta.3' );
}

if ( ! function_exists( 'Kirki' ) ) {
Expand Down
6 changes: 6 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@ If you want to integrate Kirki in your theme or plugin, please read the instruct

== Changelog ==

= 4.0-beta.3 - November 18, 2021 =
Small bugfixes/changes:
* Update `googlefonts` package
* Update `control-react-colorful` package
* Fix notices & warnings in `module-webfonts` package when `get_font_choices` method is called.

= 4.0-beta.2 - November 04, 2021 =
Bugfixes:
* The CSS output of `control-react-colorful` was empty when the value is a string
Expand Down

0 comments on commit 6f38e54

Please sign in to comment.