File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ function tangible_fields( $arg = false ) {
1313
1414 public $ name = 'tangible_fields ' ;
1515 // Remember to update the version - Expected format: YYYYMMDD
16- public $ version = '20250125 ' ;
16+ public $ version = '20250222 ' ;
1717
1818 // Dynamic methods
1919 function __call ( $ method = '' , $ args = [] ) {
Original file line number Diff line number Diff line change 11{
22 "name" : " @tangible/fields" ,
33 "description" : " React library for form field types" ,
4- "version" : " 2025.1.25 " ,
4+ "version" : " 2025.2.22 " ,
55 "type" : " module" ,
66 "repository" : {
77 "url" : " git+ssh://git@github.com/tangibleinc/fields.git"
Original file line number Diff line number Diff line change 22/**
33 * Plugin Name: Tangible Fields
44 * Description: React-based custom fields library
5- * Version: 2025.1.25
5+ * Version: 2025.2.22
66 */
77use tangible \updater ;
88
Original file line number Diff line number Diff line change @@ -25,16 +25,16 @@ import fs from 'node:fs/promises'
2525 . replace ( / r e t u r n ' [ 0 - 9 ] { 8 } ' / , `return '${ version } '` )
2626 . replace ( / ' v e r s i o n ' = > ' [ 0 - 9 ] { 8 } ' / , `'version' => '${ version } '` )
2727 . replace (
28- / ' v e r s i o n ' = > ' [ 0 - 9 ] { 4 } \. [ 0 - 9 ] { 2 } \. [ 0 - 9 ] { 2 } ' / ,
28+ / ' v e r s i o n ' = > ' [ 0 - 9 ] { 4 } \. [ 0 - 9 ] + \. [ 0 - 9 ] + ' / ,
2929 `'version' => '${ versionWithDots } '` ,
3030 )
3131 . replace ( / \$ v e r s i o n = ' [ 0 - 9 ] { 8 } ' / , `$version = '${ version } '` )
3232 . replace (
33- / " v e r s i o n " : " [ 0 - 9 ] { 4 } \. [ 0 - 9 ] { 2 } \. [ 0 - 9 ] { 2 } " / ,
33+ / " v e r s i o n " : " [ 0 - 9 ] { 4 } \. [ 0 - 9 ] + \. [ 0 - 9 ] + " / ,
3434 `"version": "${ versionWithDots } "` ,
3535 )
3636 . replace (
37- / V e r s i o n : [ 0 - 9 ] { 4 } \. [ 0 - 9 ] { 2 } \. [ 0 - 9 ] { 2 } / ,
37+ / V e r s i o n : [ 0 - 9 ] { 4 } \. [ 0 - 9 ] + \. [ 0 - 9 ] + / ,
3838 `Version: ${ versionWithDots } ` ,
3939 )
4040
You can’t perform that action at this time.
0 commit comments