Skip to content

Commit

Permalink
Version upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
karthikax committed Oct 26, 2020
1 parent bf00509 commit 8459e19
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 15 deletions.
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 2.0.1 / Release: 26-10-2020
===================
- Fix: Bug in Extra styles.
- Fix: Unknown font family is gracefully handled

Version 2.0.0 / Release: 25-10-2020
===================
- New: Visual CSS editor under "Extra Styles".
Expand Down
2 changes: 1 addition & 1 deletion library/init.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function greenlet_constants() {
define( 'GREENLET_CHILD_URL', get_stylesheet_directory_uri() );

// Define other constants.
define( 'GREENLET_VERSION', '2.0.0' );
define( 'GREENLET_VERSION', '2.0.1' );
}

add_action( 'greenlet_init', 'greenlet_constants' );
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": "greenlet",
"version": "2.0.0",
"version": "2.0.1",
"description": "Extremely fast and highly customizable WordPress theme.",
"dependencies": {
"react-select-search": "^2.1.1"
Expand Down
11 changes: 3 additions & 8 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Tags: blog, custom-background, custom-colors, editor-style, featured-images, foo
Tested up to: 5.5.1
Requires at least: 5.0
Requires PHP: 5.4 or higher
Stable tag: 2.0.0
Stable tag: 2.0.1

Extremely fast and highly customizable WordPress theme.

Expand Down Expand Up @@ -61,13 +61,8 @@ Greenlet also is SEO friendly. Theme integrates schema.org efficiently for Searc

== Changelog ==

- New: Visual CSS editor under "Extra Styles".
- New: Unlimited Headers and Footers creator.
- New: Individual post/page layout selector
- Improvement: All visual styles are moved to "Extra Styles".
- Improvement: Bootstrap update to 4.5.3.
- Improvement: Show logo, title & tagline independently.
- Improvement: Full-width & full-width container block support
- Fix: Bug in Extra styles.
- Fix: Unknown font family is gracefully handled

== Copyright ==

Expand Down
9 changes: 6 additions & 3 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @package greenlet
*/

import babel from 'rollup-plugin-babel'
import babel from '@rollup/plugin-babel'
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import replace from '@rollup/plugin-replace'
Expand All @@ -14,15 +14,17 @@ import scss from 'rollup-plugin-scss'
const GLOBALS = {
jQuery: 'jQuery',
react: 'React',
'react-dom': 'ReactDOM'
'react-dom': 'ReactDOM',
'prop-types': 'PropTypes'
}

const EXTERNAL = [
'jQuery',
'react',
'react-dom',
'React',
'ReactDOM'
'ReactDOM',
'prop-types'
]

const getCWBanner = filename => `/** @license ColorWings v1.0.0
Expand Down Expand Up @@ -87,6 +89,7 @@ const config = paths.map(( path ) => ({
plugins: [
babel({
exclude: 'node_modules/**',
babelHelpers: 'bundled',
}),
resolve({
browser: true,
Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Theme Name: Greenlet
* Theme URI: https://greenletwp.com
* Description: Greenlet is an extremely fast, lightweight best SEO WordPress theme made for blogs, personal portfolio, business, and Woocommerce Stores. While Greenlet setup is quick and easy, it provides dozens of options for customization without affecting the speed and size of your website. Features: 100/100 Google Page Speed score | Extremely Lightweight (~25KB) | Schema Markup Added | No jQuery | 12 Column Design System | 8 Predefined Layouts (extendable) | Unlimited Post Layout | Unlimited Header and Footer layout | Pagination ( Default, Numbered, Ajax, Load More, Infinite Scroll ) | ML Support | RTL Support | Visual style edtor | Mobile Ready | Breadcrumb | WooCommerce Support | Theme Presets and so much more.
* Version: 2.0.0
* Version: 2.0.1
* Tested up to: 5.5.1
* Requires PHP: 5.4 or higher
* Author: Greenlet Team
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "e2e-testing",
"version": "2.0.0",
"version": "2.0.1",
"description": "End to End Testing for Greenlet",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 8459e19

Please sign in to comment.