Skip to content

Commit

Permalink
v0.9.13 Upgrade to Smab.DictionaryOfWords v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
smabuk committed Feb 17, 2024
1 parent 99af01e commit b5c99d5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Smab.DiceAndTiles/Games/Boggle/BoggleDice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public BoggleDice(string type, IDictionaryService? dictionary = null) : this(typ

public BoggleDice(BoggleType type = BoggleType.Classic4x4, IDictionaryService? dictionary = null)
{
dictionaryOfWords = dictionary ?? new DictionaryService(Array.Empty<string>());
dictionaryOfWords = dictionary ?? new DictionaryService();
Type = type;

BoardSize = (int)Math.Sqrt(Type switch
Expand Down
2 changes: 1 addition & 1 deletion src/Smab.DiceAndTiles/Games/QLess/QLessDice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public QLessDice(IDictionaryService? dictionary = null)
{
Dice = [.. diceSet];
ShakeAndFillRack();
dictionaryOfWords = dictionary ?? new DictionaryService(Array.Empty<string>());
dictionaryOfWords = dictionary ?? new DictionaryService();
}

public List<LetterDie> Dice { get; set; }
Expand Down
4 changes: 2 additions & 2 deletions src/Smab.DiceAndTiles/Smab.DiceAndTiles.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<PropertyGroup>
<PackageReleaseNotes>Tiles</PackageReleaseNotes>
<VersionPrefix>0.9.12</VersionPrefix>
<VersionPrefix>0.9.13</VersionPrefix>
<Preview></Preview>
<VersionSuffix Condition="'$(Preview)' != '' And '$(BUILD_BUILDNUMBER)' == ''">$(Preview).$([System.DateTime]::get_Now().get_Year())$([System.DateTime]::get_Now().get_Month().ToString("D2"))$([System.DateTime]::get_Now().get_Day().ToString("D2"))-$([System.DateTime]::get_Now().get_Hour().ToString("D2"))$([System.DateTime]::get_Now().get_Minute().ToString("D2"))</VersionSuffix>
<VersionSuffix Condition="'$(Preview)' != '' And '$(BUILD_BUILDNUMBER)' != ''">$(Preview).$(BUILD_BUILDNUMBER)</VersionSuffix>
Expand Down Expand Up @@ -37,7 +37,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Smab.DictionaryOfWords" Version="1.0.1" />
<PackageReference Include="Smab.DictionaryOfWords" Version="1.0.2" />
</ItemGroup>

</Project>

0 comments on commit b5c99d5

Please sign in to comment.