Skip to content

Commit ae72ced

Browse files
Update version to 26.2.0 in pom.xml and README.md
1 parent 0af8910 commit ae72ced

File tree

47 files changed

+175
-162
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+175
-162
lines changed

README.md

Lines changed: 35 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

22
[![Maven Central](https://img.shields.io/maven-central/v/tools.dynamia/tools.dynamia.app)](https://search.maven.org/search?q=tools.dynamia)
33
![Java Version Required](https://img.shields.io/badge/java-25-blue)
4-
![Version](https://img.shields.io/badge/version-26.1-brightgreen)
5-
![CalVer](https://img.shields.io/badge/versioning-CalVer-blue)
4+
![Version](https://img.shields.io/badge/version-26.2.0-brightgreen)
5+
![CalVer](https://img.shields.io/badge/versioning-CalVer%20YY.MM.MINOR-blue)
66
[![Java CI with Maven](https://github.com/dynamiatools/framework/actions/workflows/maven.yml/badge.svg)](https://github.com/dynamiatools/framework/actions/workflows/maven.yml)
77
[![Release and Deploy](https://github.com/dynamiatools/framework/actions/workflows/release.yml/badge.svg)](https://github.com/dynamiatools/framework/actions/workflows/release.yml)
88
[![DynamiaTools Documentation](https://img.shields.io/badge/DynamiaTools-Documentation-orange)](https://dynamia.tools/getting-started/)
@@ -16,12 +16,19 @@
1616

1717
### 📅 CalVer Versioning
1818

19-
Starting with version **26.1**, Dynamia Platform adopts **Calendar Versioning (CalVer)** with the format `YY.MINOR`. This means:
19+
Starting with version **26.2.0**, Dynamia Platform adopts **Calendar Versioning (CalVer)** with the format `YY.MM.MINOR`. This means:
2020
- **All modules share the same version**: Core, extensions, starters, themes—everything is released together
21-
- **26.1** = First release of 2026 (Year 26, Minor release 1)
21+
- **26.2.0** = First release of February 2026 (Year 26, Month 02, Release 0)
22+
- **26.2.1** = Second release of February 2026
23+
- **26.3.0** = First release of March 2026
2224
- **Unified releases** ensure compatibility and simplify dependency management
2325
- No more version mismatches between platform components!
2426

27+
**Examples**:
28+
- `26.2.0` → February 2026, first release
29+
- `26.2.1` → February 2026, second release (hotfix or minor update)
30+
- `26.12.3` → December 2026, fourth release
31+
2532
## 🚀 What Makes Dynamia Platform Special
2633

2734
Dynamia Platform represents a major evolution from DynamiaTools, bringing together:
@@ -32,6 +39,12 @@ Dynamia Platform represents a major evolution from DynamiaTools, bringing togeth
3239
- **Enterprise-Grade**: Built for scalability, multi-tenancy, and security
3340
- **Developer Experience**: Focus on productivity and code simplicity
3441

42+
### 🎨 Automatic Frontend Generation
43+
44+
By default, **Dynamia Platform automatically generates full-featured web interfaces** using **ZK Framework**, a powerful server-side component framework that eliminates the need to write JavaScript, HTML, or CSS manually. Simply define your entities and view descriptors, and ZK renders responsive, interactive UIs with zero frontend code.
45+
46+
**Coming Soon**: In upcoming releases, Dynamia Platform will support **modern frontend frameworks** like **React**, **Vue**, and **Angular**, giving you the flexibility to choose your preferred technology stack while maintaining the same automatic generation capabilities. You'll be able to leverage our **TypeScript SDK** and pre-built components to build modern, decoupled SPAs that consume Dynamia's RESTful APIs.
47+
3548
## ✨ Core Capabilities
3649

3750
- **Automatic CRUD Generation**: Define entities, get full-featured interfaces instantly
@@ -218,29 +231,29 @@ Enterprise authentication and authorization:
218231
<dependency>
219232
<groupId>tools.dynamia</groupId>
220233
<artifactId>tools.dynamia.app</artifactId>
221-
<version>26.1</version>
234+
<version>26.2.0</version>
222235
</dependency>
223236

224237
<dependency>
225238
<groupId>tools.dynamia</groupId>
226239
<artifactId>tools.dynamia.zk</artifactId>
227-
<version>26.1</version>
240+
<version>26.2.0</version>
228241
</dependency>
229242

230243
<dependency>
231244
<groupId>tools.dynamia</groupId>
232245
<artifactId>tools.dynamia.domain.jpa</artifactId>
233-
<version>26.1</version>
246+
<version>26.2.0</version>
234247
</dependency>
235248
</dependencies>
236249
```
237250

238251
**Gradle** (`build.gradle`)
239252
```groovy
240253
dependencies {
241-
implementation 'tools.dynamia:tools.dynamia.app:26.1'
242-
implementation 'tools.dynamia:tools.dynamia.zk:26.1'
243-
implementation 'tools.dynamia:tools.dynamia.domain.jpa:26.1'
254+
implementation 'tools.dynamia:tools.dynamia.app:26.2.0'
255+
implementation 'tools.dynamia:tools.dynamia.zk:26.2.0'
256+
implementation 'tools.dynamia:tools.dynamia.domain.jpa:26.2.0'
244257
}
245258
```
246259

@@ -279,65 +292,65 @@ Enterprise authentication and authorization:
279292

280293
### Adding Extensions
281294

282-
To use any of the built-in extensions, simply add their dependencies. **All extensions now share the same version (26.1)** thanks to unified CalVer:
295+
To use any of the built-in extensions, simply add their dependencies. **All extensions now share the same version (26.2.0)** thanks to unified CalVer:
283296

284297
```xml
285298
<!-- Multi-tenancy / SaaS -->
286299
<dependency>
287300
<groupId>tools.dynamia.modules</groupId>
288301
<artifactId>tools.dynamia.modules.saas</artifactId>
289-
<version>26.1</version>
302+
<version>26.2.0</version>
290303
</dependency>
291304

292305
<!-- Email & SMS -->
293306
<dependency>
294307
<groupId>tools.dynamia.modules</groupId>
295308
<artifactId>tools.dynamia.modules.email</artifactId>
296-
<version>26.1</version>
309+
<version>26.2.0</version>
297310
</dependency>
298311

299312
<!-- Entity Files with S3 Support -->
300313
<dependency>
301314
<groupId>tools.dynamia.modules</groupId>
302315
<artifactId>tools.dynamia.modules.entityfiles</artifactId>
303-
<version>26.1</version>
316+
<version>26.2.0</version>
304317
</dependency>
305318
<dependency>
306319
<groupId>tools.dynamia.modules</groupId>
307320
<artifactId>tools.dynamia.modules.entityfiles.s3</artifactId>
308-
<version>26.1</version>
321+
<version>26.2.0</version>
309322
</dependency>
310323

311324
<!-- Dashboard -->
312325
<dependency>
313326
<groupId>tools.dynamia.modules</groupId>
314327
<artifactId>tools.dynamia.modules.dashboard</artifactId>
315-
<version>26.1</version>
328+
<version>26.2.0</version>
316329
</dependency>
317330

318331
<!-- Reporting -->
319332
<dependency>
320333
<groupId>tools.dynamia.reports</groupId>
321334
<artifactId>tools.dynamia.reports.core</artifactId>
322-
<version>26.1</version>
335+
<version>26.2.0</version>
323336
</dependency>
324337

325338
<!-- File Importer -->
326339
<dependency>
327340
<groupId>tools.dynamia.modules</groupId>
328341
<artifactId>tools.dynamia.modules.fileimporter</artifactId>
329-
<version>26.1</version>
342+
<version>26.2.0</version>
330343
</dependency>
331344

332345
<!-- Security -->
333346
<dependency>
334347
<groupId>tools.dynamia.modules</groupId>
335348
<artifactId>tools.dynamia.modules.security</artifactId>
336-
<version>26.1</version>
349+
<version>26.2.0</version>
337350
</dependency>
338351
```
339352

340-
> **💡 Pro Tip**: With CalVer, all Dynamia Platform components use the same version. Just use `26.1` for everything!
353+
> **💡 Pro Tip**: With CalVer, all Dynamia Platform components use the same version. Just use `26.2.0` for everything!
341354
342355
> **Note**: All artifacts are available on [Maven Central](https://search.maven.org/search?q=tools.dynamia)
343356
@@ -455,12 +468,12 @@ Java 11+ and ecosystem update:
455468

456469
#### **v26.x - CalVer Generation** (2026+)
457470
**The Modern Era** - Simplified versioning and cutting-edge technology:
458-
- 📅 **CalVer Versioning** (YY.MINOR) - All modules unified under same version
471+
- 📅 **CalVer Versioning** (YY.MM.MINOR) - All modules unified under same version (Year.Month.Release)
459472
-**Java 25** - Latest Java innovations and performance
460473
- 🚀 **Spring Boot 4** - Next-gen Spring ecosystem
461474
- 🎨 **ZK 10+** - Modern web UI capabilities
462475
- 🔄 **Synchronized Releases** - Core, extensions, starters, and themes share the same version
463-
- 🎯 **Simplified Dependencies** - One version to rule them all (26.1)
476+
- 🎯 **Simplified Dependencies** - One version to rule them all (e.g., 26.2.0 for February 2026)
464477
-**Enhanced Performance** - Optimized for modern JVM and cloud environments
465478
- 🛡️ **Production Hardened** - Battle-tested in enterprise environments
466479

extensions/dashboard/sources/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>tools.dynamia.modules</groupId>
2525
<artifactId>tools.dynamia.modules.parent</artifactId>
26-
<version>26.1</version>
26+
<version>26.2.0</version>
2727
<relativePath>../../pom.xml</relativePath>
2828
</parent>
2929

@@ -38,12 +38,12 @@
3838
<dependency>
3939
<groupId>tools.dynamia</groupId>
4040
<artifactId>tools.dynamia.zk</artifactId>
41-
<version>26.1</version>
41+
<version>26.2.0</version>
4242
</dependency>
4343
<dependency>
4444
<groupId>tools.dynamia.modules</groupId>
4545
<artifactId>tools.dynamia.modules.saas.api</artifactId>
46-
<version>26.1</version>
46+
<version>26.2.0</version>
4747
</dependency>
4848
</dependencies>
4949

extensions/email-sms/sources/core/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<artifactId>tools.dynamia.modules.email.parent</artifactId>
2525
<groupId>tools.dynamia.modules</groupId>
26-
<version>26.1</version>
26+
<version>26.2.0</version>
2727
</parent>
2828

2929
<artifactId>tools.dynamia.modules.email</artifactId>
@@ -50,12 +50,12 @@
5050
<dependency>
5151
<groupId>tools.dynamia</groupId>
5252
<artifactId>tools.dynamia.domain.jpa</artifactId>
53-
<version>26.1</version>
53+
<version>26.2.0</version>
5454
</dependency>
5555
<dependency>
5656
<groupId>tools.dynamia</groupId>
5757
<artifactId>tools.dynamia.templates</artifactId>
58-
<version>26.1</version>
58+
<version>26.2.0</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>org.springframework</groupId>

extensions/email-sms/sources/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>tools.dynamia.modules</groupId>
2525
<artifactId>tools.dynamia.modules.parent</artifactId>
26-
<version>26.1</version>
26+
<version>26.2.0</version>
2727
<relativePath>../../pom.xml</relativePath>
2828
</parent>
2929

@@ -85,7 +85,7 @@
8585
<dependency>
8686
<groupId>tools.dynamia.modules</groupId>
8787
<artifactId>tools.dynamia.modules.saas.jpa</artifactId>
88-
<version>26.1</version>
88+
<version>26.2.0</version>
8989
</dependency>
9090

9191

extensions/email-sms/sources/ui/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>tools.dynamia.modules.email.parent</artifactId>
2424
<groupId>tools.dynamia.modules</groupId>
25-
<version>26.1</version>
25+
<version>26.2.0</version>
2626
</parent>
2727

2828
<name>DynamiaModules - Email UI</name>
@@ -34,12 +34,12 @@
3434
<dependency>
3535
<groupId>tools.dynamia</groupId>
3636
<artifactId>tools.dynamia.zk</artifactId>
37-
<version>26.1</version>
37+
<version>26.2.0</version>
3838
</dependency>
3939
<dependency>
4040
<groupId>tools.dynamia.modules</groupId>
4141
<artifactId>tools.dynamia.modules.email</artifactId>
42-
<version>26.1</version>
42+
<version>26.2.0</version>
4343
</dependency>
4444
<dependency>
4545
<groupId>tools.dynamia.zk.addons</groupId>

extensions/entity-files/sources/core/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>tools.dynamia.modules.entityfiles.parent</artifactId>
2424
<groupId>tools.dynamia.modules</groupId>
25-
<version>26.1</version>
25+
<version>26.2.0</version>
2626
</parent>
2727
<name>DynamiaModules - EntityFiles - Core</name>
2828
<artifactId>tools.dynamia.modules.entityfiles</artifactId>
@@ -54,20 +54,20 @@
5454
<dependency>
5555
<groupId>tools.dynamia</groupId>
5656
<artifactId>tools.dynamia.domain.jpa</artifactId>
57-
<version>26.1</version>
57+
<version>26.2.0</version>
5858
<type>jar</type>
5959
</dependency>
6060
<dependency>
6161
<groupId>tools.dynamia</groupId>
6262
<artifactId>tools.dynamia.io</artifactId>
63-
<version>26.1</version>
63+
<version>26.2.0</version>
6464
<type>jar</type>
6565
</dependency>
6666

6767
<dependency>
6868
<groupId>tools.dynamia</groupId>
6969
<artifactId>tools.dynamia.web</artifactId>
70-
<version>26.1</version>
70+
<version>26.2.0</version>
7171
<type>jar</type>
7272
</dependency>
7373

extensions/entity-files/sources/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>tools.dynamia.modules</groupId>
2525
<artifactId>tools.dynamia.modules.parent</artifactId>
26-
<version>26.1</version>
26+
<version>26.2.0</version>
2727
<relativePath>../../pom.xml</relativePath>
2828
</parent>
2929

extensions/entity-files/sources/s3/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>tools.dynamia.modules</groupId>
2525
<artifactId>tools.dynamia.modules.entityfiles.parent</artifactId>
26-
<version>26.1</version>
26+
<version>26.2.0</version>
2727
</parent>
2828

2929
<name>DynamiaModules - EntityFiles - S3</name>
@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>tools.dynamia.modules</groupId>
5151
<artifactId>tools.dynamia.modules.entityfiles</artifactId>
52-
<version>26.1</version>
52+
<version>26.2.0</version>
5353
</dependency>
5454
<dependency>
5555
<groupId>software.amazon.awssdk</groupId>

extensions/entity-files/sources/ui/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>tools.dynamia.modules.entityfiles.parent</artifactId>
2424
<groupId>tools.dynamia.modules</groupId>
25-
<version>26.1</version>
25+
<version>26.2.0</version>
2626
</parent>
2727
<name>DynamiaModules - EntityFiles UI</name>
2828
<artifactId>tools.dynamia.modules.entityfiles.ui</artifactId>
@@ -48,12 +48,12 @@
4848
<dependency>
4949
<groupId>tools.dynamia.modules</groupId>
5050
<artifactId>tools.dynamia.modules.entityfiles</artifactId>
51-
<version>26.1</version>
51+
<version>26.2.0</version>
5252
</dependency>
5353
<dependency>
5454
<groupId>tools.dynamia</groupId>
5555
<artifactId>tools.dynamia.zk</artifactId>
56-
<version>26.1</version>
56+
<version>26.2.0</version>
5757
<type>jar</type>
5858
</dependency>
5959
</dependencies>

extensions/file-importer/sources/core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<artifactId>tools.dynamia.modules.importer.parent</artifactId>
2525
<groupId>tools.dynamia.modules</groupId>
26-
<version>26.1</version>
26+
<version>26.2.0</version>
2727
</parent>
2828
<name>Dynamia Modules - Importer Core</name>
2929
<artifactId>tools.dynamia.modules.importer</artifactId>
@@ -56,7 +56,7 @@
5656
<dependency>
5757
<groupId>tools.dynamia</groupId>
5858
<artifactId>tools.dynamia.reports</artifactId>
59-
<version>26.1</version>
59+
<version>26.2.0</version>
6060
</dependency>
6161
</dependencies>
6262

0 commit comments

Comments
 (0)