This commit is contained in:
2025-03-03 20:04:27 +02:00
parent 499020323e
commit 4cd7176643
3 changed files with 5 additions and 18 deletions

View File

@@ -1,20 +1,6 @@
<!---
## Guidelines for changelog/git
**INIT**: Initial commit in a repo, only committed once.
**DOC**: Updates/Refactors in the documents.
**CHORE**: Minor fixes and/or architecture enhancements.
**DEPS**: Dependency updates and the resulting refactors.
**SYNC**: Regular sync commits to ensure perfect syncing of all the development devices (Describes the feature in the working).
**TEST**: Adding/Updating test files.
**FIX**: Fixing a bug/issue that prevents a functionality.
**FEAT**: Add a completely new functionality or extend an existing one in a non-breaking manner.
**BREAKING CHANGE**: A [FEAT] but with breaking changes (Is only proposed as FEAT in the git commit).
## Version Composition
x.y.z
* Update z on Deps and Fixes.
* Update y on Feat that are large enough.
* Update x on BREAKING CHANGE that are a must and to signal phases completed [Alpha - Beta - Stable].
-->
## 0.1.1
- **FIX**: Adding export for `AstromicFieldState`.
## 0.1.0

View File

@@ -1,3 +1,4 @@
export 'package:form_controller/form_controller.dart';
export 'src/controller.dart';
export 'src/form_field.dart';
export 'src/enums/enums.exports.dart';

View File

@@ -1,7 +1,7 @@
name: astromic_helpers
description: The helpers module of the Astromic Presentation System
publish_to: "none"
version: 0.1.0
version: 0.1.1
environment:
sdk: ">=3.6.0"