Skip to content

Commit d3d747d

Browse files
committed
fix: fix minor updates dependency outdated
1 parent be98af3 commit d3d747d

25 files changed

Lines changed: 29 additions & 25 deletions

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,7 @@
1111
- Provided data export functionalities (JSON, CSV, SQL).
1212
- Included comprehensive examples and tests.
1313
- Add extensive documentation and usage examples
14+
15+
## 1.0.0+1
16+
17+
- Minor updates for pubspec

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 💦Darturbation💦: Advanced Mock Data Generator for Dart & Flutter
22

33
[![Dart CI](https://github.com/mathtechstudio/darturbation/actions/workflows/ci.yml/badge.svg)](https://github.com/mathtechstudio/darturbation/actions/workflows/ci.yml)
4-
[![Version](https://img.shields.io/badge/version-1.0.0-blue)](https://pub.dev/packages/darturbation)
4+
[![Version](https://img.shields.io/badge/version-1.0.0+1-blue)](https://pub.dev/packages/darturbation)
55
[![Platforms](https://img.shields.io/badge/platforms-Android%20%7C%20iOS%20%7C%20Web%20%7C%20Windows%20%7C%20macOS%20%7C%20Linux-blue)](https://pub.dev/packages/darturbation)
66

77
<!-- ![Darturbation Logo](https://via.placeholder.com/400x200?text=Darturbation+Logo) -->

lib/darturbation.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,4 +623,4 @@ class Darturbation {
623623
static String generateId() {
624624
return _uuid.v4();
625625
}
626-
}
626+
}

lib/src/core/context_manager.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ class ContextManager {
7373
_language = 'id';
7474
_settings.clear();
7575
}
76-
}
76+
}

lib/src/core/darturbation_core.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ class DarturbationCore {
5353
context.reset();
5454
relationships.reset();
5555
}
56-
}
56+
}

lib/src/core/generic_generator.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ class GenericGenerator {
7777
return null;
7878
}
7979
}
80-
}
80+
}

lib/src/core/pattern_engine.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,4 +164,4 @@ class PatternEngine {
164164
return ''; // No review generated
165165
}
166166
}
167-
}
167+
}

lib/src/core/relationship_manager.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,4 +151,4 @@ class RelationshipManager {
151151
_generatedData.clear();
152152
_relationships.clear();
153153
}
154-
}
154+
}

lib/src/data/behavioral_patterns.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,4 +237,4 @@ class BehavioralPatterns {
237237
static double getPriceRange(String category, String pricePreference) {
238238
return priceRanges[pricePreference]?[category] ?? 100000;
239239
}
240-
}
240+
}

0 commit comments

Comments
 (0)