Releases: drager/faker
Releases · drager/faker
v2.2.0
Features
- Add
rgbColor
method to colors faker. PR #72
faker.colors.rgbColor();
faker.colors.rgbColor(prefix: '0x');
faker.colors.rgbColor(casing: Casing.upper);
faker.colors.rgbColor(format: Format.css);
faker.colors.rgbColor(includeAlpha: true);
Fixes
- Fix safe email method by removing apostrophe. PR #70
Maintenance
- Update lints package. PR #71
v2.1.0
Features
faker.date.justTime();
faker.geo.latitude();
faker.geo.longitude();
- Add animals faker. PR #62
faker.animal.name();
- Add german phone numbers. PR #60
faker.phoneNumber.de();
faker.date.dateTimeBetween(DateTime(2017, 9, 7), DateTime(2020, 9, 7));
- Add colors faker. As well as
vehicle.colorYearMakeModel
. PR #50
// Generates a color name.
faker.colors.color();
// Generates a color name from a smaller list of colors.
faker.colors.commonColor();
/// Generates a random vehicle's year, make, and model with a prefixed color.
faker.vehicle.colorYearMakeModel();
Fixes
Maintenance
- Add lints & Upgrade min dart sdk and dependencies. PR #64