Skip to content

Commit

Permalink
Bump version to v0.6.16
Browse files Browse the repository at this point in the history
  • Loading branch information
easazade committed Sep 16, 2023
1 parent 435c45f commit 24b79f5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
19 changes: 13 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
## 0.6.16

- Add boolean resource generating random booleans

## 0.6.15

- Fix localized generators generating in english
- Add lorem.paragraph generator

## 0.6.14

- Update dependencies
- Update sdk constraints
- Fix emailFrom generator

## 0.5.14

- Update README
- Fix missing method argument type in Numbers class
- Sort metadata lists read from code so generated code will be the same on windows as well
Expand All @@ -16,27 +23,30 @@
- Add types.dart file to add new type there
- Update CONTRIBUTING.md
- Update README

## 0.4.13

- Update README
- Add Contribution Guide

## 0.4.4

- Update scripts

## 0.4.3

- Changed package name to **faker_x**

## 0.4.2

- Fix internet.emails not being generated with correct provider names
- Add Number resource
- Add Phone resource
- Add Phone resource

## 0.3.1

- Remove the need to create Args object to pass arguments to methods of FakerX to generate fake value. (flatten FakerX generator methods arguments)
- Fix bug in internet.disposableMail method not being generated correctly
- Fix bug in internet.disposableMail method not being generated correctly
- Add example app
- Add location resource
- Add a TypeDataSource to make possible generating non string fake values
Expand All @@ -51,19 +61,16 @@
- Add internet resource
- Update person resource
- Add support to add string transformers to formats
- Add support to return Format objects from DataSource builder callback
- Add support to return Format objects from DataSource builder callback
- Update generator scripts and more validation checks


## 0.1.1

- Finish code generation scripts.
- Add support for DataSources with builder methods
- Add support for global DataSources
- Fix bad data in DataSources



## 0.0.1

- Initial version.
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: faker_x
description: BEST faker package available for dart. One that the Dart community deserves.
version: 0.6.15
version: 0.6.16
homepage: https://github.com/easazade/faker_x

environment:
Expand Down
2 changes: 2 additions & 0 deletions test/manual/utility_resources/boolean_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@ import '../../utils.dart';
void main() {
test("boolean test random", () async {
final allResults = [];

for (var i = 0; i < testRepeatCount; i++) {
final result = FakerX.defaultInstance.boolean.random;
allResults.add(result);
assertFakeValue(result);
}

expect(allResults.contains(true), isTrue);
expect(allResults.contains(false), isTrue);
});
Expand Down

0 comments on commit 24b79f5

Please sign in to comment.