Skip to content

Commit a78af43

Browse files
committed
Prep new release.
1 parent bcbeb79 commit a78af43

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

HISTORY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v33.0.2
2+
Release Date: 2021-02-21
3+
4+
* PR 359: Add `Bogus.Person.Personnummer()` Swedish national identity number
5+
16
## v33.0.1
27
Release Date: 2021-02-07
38

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -511,11 +511,13 @@ In the examples above, all three alternative styles of using **Bogus** produce t
511511
* **`using Bogus.Extensions.Portugal;`**
512512
* `Bogus.Person.Nif()` - Número de Identificação Fiscal (NIF)
513513
* `Bogus.DataSets.Company.Nipc()` - Número de Identificação de Pessoa Colectiva (NIPC)
514+
* **`using Bogus.Extensions.Sweden;`**
515+
* `Bogus.Person.Personnummer()` - Swedish national identity number
514516
* **`using Bogus.Extensions.UnitedKingdom;`**
515-
* `Bogus.DataSets.Address.CountryOfUnitedKingdom()` - Country of the United Kingdom
517+
* `Bogus.DataSets.Vehicle.GbRegistrationPlate()` - GB Vehicle Registration Plate
516518
* `Bogus.DataSets.Finance.SortCode()` - Banking Sort Code
517519
* `Bogus.DataSets.Finance.Nino()` - National Insurance Number
518-
* `Bogus.DataSets.Vehicle.GbRegistrationPlate()` - GB Vehicle Registration Plate
520+
* `Bogus.DataSets.Address.CountryOfUnitedKingdom()` - Country of the United Kingdom
519521
* **`using Bogus.Extensions.UnitedStates;`**
520522
* `Bogus.Person.Ssn()` - Social Security Number
521523
* `Bogus.DataSets.Company.Ein()` - Employer Identification Number

Source/Bogus/Extensions/Norway/ExtensionsForNorway.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Bogus.Extensions.Norway
88
public static class ExtensionsForNorway
99
{
1010
/// <summary>
11-
/// Norwegian national identity number (fødselsnummer)
11+
/// Norwegian national identity number
1212
/// </summary>
1313
public static string Fødselsnummer(this Person p)
1414
{

Source/Bogus/Extensions/Sweden/ExtensionsForSweden.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace Bogus.Extensions.Sweden
1111
public static class ExtensionsForSweden
1212
{
1313
/// <summary>
14-
/// Swedish national identity number (personnummer)
14+
/// Swedish national identity number
1515
/// </summary>
1616
public static string Personnummer(this Person person)
1717
{

Source/Bogus/Extensions/UnitedKingdom/RegistrationPlateExtensionsForGreatBritain.cs renamed to Source/Bogus/Extensions/UnitedKingdom/ExtensionsForGreatBritainRegistrationPlate.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Bogus.Extensions.UnitedKingdom
88
/// <summary>
99
/// API extensions specific for a geographical location.
1010
/// </summary>
11-
public static class RegistrationPlateExtensionsForGreatBritain
11+
public static class ExtensionsForGreatBritainRegistrationPlate
1212
{
1313
private static readonly DateTime StartOfCurrentStyle = new DateTime(2001, 9, 1);
1414

@@ -41,7 +41,7 @@ public static class RegistrationPlateExtensionsForGreatBritain
4141
};
4242

4343
/// <summary>
44-
/// Generate a GB Vehicle Registration Plate.
44+
/// GB Vehicle Registration Plate
4545
/// </summary>
4646
/// <param name="vehicle">Object to extend.</param>
4747
/// <param name="dateFrom">The start of the range of registration dates.</param>

0 commit comments

Comments
 (0)