|
16 | 16 |
|
17 | 17 | ### 📅 CalVer Versioning |
18 | 18 |
|
19 | | -Starting with version **26.2.2**, Dynamia Platform adopts **Calendar Versioning (CalVer)** with the format `YY.MM.MINOR`. This means: |
| 19 | +Starting with version **26.4.0**, Dynamia Platform adopts **Calendar Versioning (CalVer)** with the format `YY.MM.MINOR`. This means: |
20 | 20 | - **All modules share the same version**: Core, extensions, starters, themes—everything is released together |
21 | | -- **26.2.2** = First release of February 2026 (Year 26, Month 02, Release 0) |
| 21 | +- **26.4.0** = First release of February 2026 (Year 26, Month 02, Release 0) |
22 | 22 | - **26.2.1** = Second release of February 2026 |
23 | 23 | - **26.3.0** = First release of March 2026 |
24 | 24 | - **Unified releases** ensure compatibility and simplify dependency management |
25 | 25 | - No more version mismatches between platform components! |
26 | 26 |
|
27 | 27 | **Examples**: |
28 | | -- `26.2.2` → February 2026, first release |
| 28 | +- `26.4.0` → February 2026, first release |
29 | 29 | - `26.2.1` → February 2026, second release (hotfix or minor update) |
30 | 30 | - `26.12.3` → December 2026, fourth release |
31 | 31 |
|
@@ -230,29 +230,29 @@ Enterprise authentication and authorization: |
230 | 230 | <dependency> |
231 | 231 | <groupId>tools.dynamia</groupId> |
232 | 232 | <artifactId>tools.dynamia.app</artifactId> |
233 | | - <version>26.2.2</version> |
| 233 | + <version>26.4.0</version> |
234 | 234 | </dependency> |
235 | 235 |
|
236 | 236 | <dependency> |
237 | 237 | <groupId>tools.dynamia</groupId> |
238 | 238 | <artifactId>tools.dynamia.zk</artifactId> |
239 | | - <version>26.2.2</version> |
| 239 | + <version>26.4.0</version> |
240 | 240 | </dependency> |
241 | 241 |
|
242 | 242 | <dependency> |
243 | 243 | <groupId>tools.dynamia</groupId> |
244 | 244 | <artifactId>tools.dynamia.domain.jpa</artifactId> |
245 | | - <version>26.2.2</version> |
| 245 | + <version>26.4.0</version> |
246 | 246 | </dependency> |
247 | 247 | </dependencies> |
248 | 248 | ``` |
249 | 249 |
|
250 | 250 | **Gradle** (`build.gradle`) |
251 | 251 | ```groovy |
252 | 252 | dependencies { |
253 | | - implementation 'tools.dynamia:tools.dynamia.app:26.2.2' |
254 | | - implementation 'tools.dynamia:tools.dynamia.zk:26.2.2' |
255 | | - implementation 'tools.dynamia:tools.dynamia.domain.jpa:26.2.2' |
| 253 | + implementation 'tools.dynamia:tools.dynamia.app:26.4.0' |
| 254 | + implementation 'tools.dynamia:tools.dynamia.zk:26.4.0' |
| 255 | + implementation 'tools.dynamia:tools.dynamia.domain.jpa:26.4.0' |
256 | 256 | } |
257 | 257 | ``` |
258 | 258 |
|
@@ -291,65 +291,65 @@ Enterprise authentication and authorization: |
291 | 291 |
|
292 | 292 | ### Adding Extensions |
293 | 293 |
|
294 | | -To use any of the built-in extensions, simply add their dependencies. **All extensions now share the same version (26.2.2)** thanks to unified CalVer: |
| 294 | +To use any of the built-in extensions, simply add their dependencies. **All extensions now share the same version (26.4.0)** thanks to unified CalVer: |
295 | 295 |
|
296 | 296 | ```xml |
297 | 297 | <!-- Multi-tenancy / SaaS --> |
298 | 298 | <dependency> |
299 | 299 | <groupId>tools.dynamia.modules</groupId> |
300 | 300 | <artifactId>tools.dynamia.modules.saas</artifactId> |
301 | | - <version>26.2.2</version> |
| 301 | + <version>26.4.0</version> |
302 | 302 | </dependency> |
303 | 303 |
|
304 | 304 | <!-- Email & SMS --> |
305 | 305 | <dependency> |
306 | 306 | <groupId>tools.dynamia.modules</groupId> |
307 | 307 | <artifactId>tools.dynamia.modules.email</artifactId> |
308 | | - <version>26.2.2</version> |
| 308 | + <version>26.4.0</version> |
309 | 309 | </dependency> |
310 | 310 |
|
311 | 311 | <!-- Entity Files with S3 Support --> |
312 | 312 | <dependency> |
313 | 313 | <groupId>tools.dynamia.modules</groupId> |
314 | 314 | <artifactId>tools.dynamia.modules.entityfiles</artifactId> |
315 | | - <version>26.2.2</version> |
| 315 | + <version>26.4.0</version> |
316 | 316 | </dependency> |
317 | 317 | <dependency> |
318 | 318 | <groupId>tools.dynamia.modules</groupId> |
319 | 319 | <artifactId>tools.dynamia.modules.entityfiles.s3</artifactId> |
320 | | - <version>26.2.2</version> |
| 320 | + <version>26.4.0</version> |
321 | 321 | </dependency> |
322 | 322 |
|
323 | 323 | <!-- Dashboard --> |
324 | 324 | <dependency> |
325 | 325 | <groupId>tools.dynamia.modules</groupId> |
326 | 326 | <artifactId>tools.dynamia.modules.dashboard</artifactId> |
327 | | - <version>26.2.2</version> |
| 327 | + <version>26.4.0</version> |
328 | 328 | </dependency> |
329 | 329 |
|
330 | 330 | <!-- Reporting --> |
331 | 331 | <dependency> |
332 | 332 | <groupId>tools.dynamia.reports</groupId> |
333 | 333 | <artifactId>tools.dynamia.reports.core</artifactId> |
334 | | - <version>26.2.2</version> |
| 334 | + <version>26.4.0</version> |
335 | 335 | </dependency> |
336 | 336 |
|
337 | 337 | <!-- File Importer --> |
338 | 338 | <dependency> |
339 | 339 | <groupId>tools.dynamia.modules</groupId> |
340 | 340 | <artifactId>tools.dynamia.modules.fileimporter</artifactId> |
341 | | - <version>26.2.2</version> |
| 341 | + <version>26.4.0</version> |
342 | 342 | </dependency> |
343 | 343 |
|
344 | 344 | <!-- Security --> |
345 | 345 | <dependency> |
346 | 346 | <groupId>tools.dynamia.modules</groupId> |
347 | 347 | <artifactId>tools.dynamia.modules.security</artifactId> |
348 | | - <version>26.2.2</version> |
| 348 | + <version>26.4.0</version> |
349 | 349 | </dependency> |
350 | 350 | ``` |
351 | 351 |
|
352 | | -> **💡 Pro Tip**: With CalVer, all Dynamia Platform components use the same version. Just use `26.2.2` for everything! |
| 352 | +> **💡 Pro Tip**: With CalVer, all Dynamia Platform components use the same version. Just use `26.4.0` for everything! |
353 | 353 |
|
354 | 354 | > **Note**: All artifacts are available on [Maven Central](https://search.maven.org/search?q=tools.dynamia) |
355 | 355 |
|
@@ -472,7 +472,7 @@ Java 11+ and ecosystem update: |
472 | 472 | - 🚀 **Spring Boot 4** - Next-gen Spring ecosystem |
473 | 473 | - 🎨 **ZK 10+** - Modern web UI capabilities |
474 | 474 | - 🔄 **Synchronized Releases** - Core, extensions, starters, and themes share the same version |
475 | | -- 🎯 **Simplified Dependencies** - One version to rule them all (e.g., 26.2.2 for February 2026) |
| 475 | +- 🎯 **Simplified Dependencies** - One version to rule them all (e.g., 26.4.0 for February 2026) |
476 | 476 | - ⚡ **Enhanced Performance** - Optimized for modern JVM and cloud environments |
477 | 477 | - 🛡️ **Production Hardened** - Battle-tested in enterprise environments |
478 | 478 |
|
|
0 commit comments