Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
eliot-akira committed Nov 19, 2024
1 parent 06c2199 commit e3550ac
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion admin/system.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function tangible_template_system( $arg = false ) {
(include __DIR__.'/../module-loader.php')(new class extends \stdClass {

public $name = 'tangible_template_system';
public $version = '20241023';
public $version = '20241119';

public $url;
public $path;
Expand Down
2 changes: 1 addition & 1 deletion core.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class template_system {
}

template_system::$state = (object) [
'version' => '20241023', // Automatically updated with npm run version
'version' => '20241119', // Automatically updated with npm run version
'path' => __DIR__,
'url' => untrailingslashit( plugins_url( '/', __FILE__ ) ),
];
Expand Down
2 changes: 1 addition & 1 deletion framework/date/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function date( $arg = false ) {
(include __DIR__ . '/module-loader.php')(new class {

public $name = 'tangible_date';
public $version = '20241023';
public $version = '20241119';

function load() {
require_once __DIR__ . '/DateCreator.php';
Expand Down
2 changes: 1 addition & 1 deletion framework/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class framework {
(include __DIR__ . '/module-loader.php')(new class {

public $name = 'tangible_framework';
public $version = '20241023';
public $version = '20241119';

function load() {

Expand Down
2 changes: 1 addition & 1 deletion framework/plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Tangible Framework
* Description: Framework module shared by Tangible plugins
* Version: 2024.10.23
* Version: 2024.11.19
* GitHub URI: TangibleInc/framework
*/
use tangible\framework;
Expand Down
2 changes: 1 addition & 1 deletion integrations/gutenberg/enqueue.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
template_system\enqueue_codemirror_v5();
$js_deps []= 'tangible-codemirror-v5';
wp_enqueue_style( 'tangible-codemirror-v5' );
}
}

$url = template_system::$state->url . '/integrations/gutenberg/build';
$version = template_system::$state->version;
Expand Down
2 changes: 1 addition & 1 deletion logic/module.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
(include __DIR__ . '/module-loader.php')(new class {

public $name = 'tangible_logic';
public $version = '20241023';
public $version = '20241119';

function load() {
require_once __DIR__ . '/index.php';
Expand Down
2 changes: 1 addition & 1 deletion logic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@tangible/logic",
"type": "module",
"private": true,
"version": "2024.10.23",
"version": "2024.11.19",
"description": "Build and evaluate conditional rules",
"homepage": "https://github.com/tangibleinc/logic",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@tangible/template-system",
"description": "Template System module",
"version": "2024.10.23",
"version": "2024.11.19",
"type": "module",
"engines": {
"node": ">=18"
Expand Down
2 changes: 1 addition & 1 deletion plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Tangible Template System
* Description: Template system shared by Tangible Blocks and Loops & Logic
* Version: 2024.10.23
* Version: 2024.11.19
* GitHub URI: TangibleInc/template-system
*/
use tangible\framework;
Expand Down

0 comments on commit e3550ac

Please sign in to comment.