Skip to content

Commit

Permalink
2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
qstudio committed Dec 28, 2021
1 parent 5b76e66 commit e3cbd6b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### 2.1.0 ###
### 2.1.1 ###

* Update: moved all object instatiation to plugin hook - all objects are stored in a global getters and setters and accessed via willow() function

Expand Down
2 changes: 1 addition & 1 deletion plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ final class plugin {
public static

// current tag ##
$_version = '2.1.0'
$_version = '2.1.1'

;

Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
**Tags:** Simple, logic-less, semantic, markup, language
**Requires at least:** 5.0
**Tested up to:** 5.6
**Stable tag:** 2.1.0
**Stable tag:** 2.1.1
**License:** GPL-2.0+

Willow ~ A logic-less template engine built for WordPress.
Expand All @@ -15,7 +15,7 @@ Willow has been designed to meet the needs of both front-end and back-end develo
All Willow tags include a matching opening and closing pair, starting and ending with a curly bracket and one other internal character, as follows:

```
{~ ui~hello {+ Willow says <strong>{{ hello }}</strong> +} ~}
{~ ui~hello {+ Willow says <strong>{{ what }}</strong> +} ~}
```

This tag calls the class **ui** method **hello** - ui->hello() - and wraps the returned data in any markup passed in the Willow argument:
Expand All @@ -27,7 +27,7 @@ class ui {

// define key + value to render ##
return [
'hello' => 'Hello'
'what' => 'Hello'
];

}
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: Simple, logic-less, semantic markup language
Requires at least: 5.0
Tested up to: 5.6
Requires PHP: 7.0
Stable tag: 2.1.0
Stable tag: 2.1.1
License: GPL-2.0+

Willow ~ A logic-less template engine built for WordPress.
Expand Down
2 changes: 1 addition & 1 deletion willow.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Plugin Name: Willow
* Plugin URI: https://qstudio.us/docs/willow/
* Description: Willow is a Logic-less Template Engine built for WordPress
* Version: 2.1.0
* Version: 2.1.1
* Author: Q Studio
* Author URI: https://qstudio.us
* License: GPL-2.0+
Expand Down

0 comments on commit e3cbd6b

Please sign in to comment.