Skip to content

Commit

Permalink
Move CheckDigitExtension to Bogus.Extensions.Extras.
Browse files Browse the repository at this point in the history
  • Loading branch information
bchavez committed Dec 23, 2017
1 parent 2398424 commit fcfe045
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
## v22.0.1
* Issue 120: `.Generate(n)` now returns `List<T>` instead of `IList<T>`.
* Added `f.Address.CountryCode()` ISO 3166-1 alpha-3 country code generator.
* Added `Bogus.Extensions.Extra` namespace for generally useful helper methods.
* New `Bogus.Extensions.Extras` namespace for generally useful helper methods.
* Added `Finance.CreditCardNumberObfuscated()` extension to `Bogus.Extensions.Extras` namespace.
* Moved credit card `CheckDigit()` extensions to `Bogus.Extensions.Extras` namespace.

## v21.0.5
* Better error support.
Expand Down
1 change: 1 addition & 0 deletions Source/Bogus/DataSets/Finance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System.Text.RegularExpressions;
using Bogus.Bson;
using Bogus.Extensions;
using Bogus.Extensions.Extras;

namespace Bogus.DataSets
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.Linq;

namespace Bogus.Extensions
namespace Bogus.Extensions.Extras
{
/// <summary>
/// Shamelessly copied (and modified) from here:
Expand Down

0 comments on commit fcfe045

Please sign in to comment.