Skip to content

Commit

Permalink
Release v6.7.2
Browse files Browse the repository at this point in the history
Exception fixed in WordSegmentation
  • Loading branch information
wolfgarbe committed Feb 11, 2022
1 parent 8c1ae6a commit 115e25f
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 20 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ but SymSpell needs to generate **only 25 deletes** to cover them all, both at pr
<br>

```
Copyright (c) 2021 Wolf Garbe
Version: 6.7.1
Copyright (c) 2022 Wolf Garbe
Version: 6.7.2
Author: Wolf Garbe <[email protected]>
Maintainer: Wolf Garbe <[email protected]>
URL: https://github.com/wolfgarbe/symspell
Description: https://seekstorm.com/blog/1000x-spelling-correction/
MIT License
Copyright (c) 2021 Wolf Garbe
Copyright (c) 2022 Wolf Garbe
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the Software without restriction, including without limitation
Expand Down Expand Up @@ -378,6 +378,11 @@ https://github.com/Archivus/SymSpell
2. Option to preserve case (upper/lower case) of input term.
3. Open source the code for creating custom frequency dictionaries in any language and size as intersection between Google Books Ngram data (Provides representative word frequencies) and SCOWL Spell Checker Oriented Word Lists (Ensures genuine English vocabulary).

#### Changes in v6.7.2

1. Exception fixed in WordSegmentation
2. Platform changed from netcore 2.1 to netcore 3.0

#### Changes in v6.7.1

1. Framework target changed from net472 to net47<br>
Expand Down
4 changes: 2 additions & 2 deletions SymSpell.Benchmark/SymSpell.Benchmark.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>netcoreapp3.0</TargetFramework>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>DEBUG;NETCOREAPP2_0;</DefineConstants>
<DefineConstants>DEBUG;NETCOREAPP3_0;</DefineConstants>
<Optimize>true</Optimize>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion SymSpell.CommandLine/SymSpell.CommandLine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>netcoreapp3.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions SymSpell.CompoundDemo/SymSpell.CompoundDemo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>netcoreapp3.0</TargetFramework>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>NETCOREAPP2_0;</DefineConstants>
<DefineConstants>NETCOREAPP3_0;</DefineConstants>
<Optimize>true</Optimize>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion SymSpell.Demo/SymSpell.Demo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>netcoreapp3.0</TargetFramework>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
4 changes: 2 additions & 2 deletions SymSpell.SegmentationDemo/SymSpell.SegmentationDemo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TargetFramework>netcoreapp3.0</TargetFramework>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>NETCOREAPP2_0;</DefineConstants>
<DefineConstants>NETCOREAPP3_0;</DefineConstants>
<Optimize>true</Optimize>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion SymSpell.Test/SymSpell.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net461;netcoreapp2.1;netcoreapp3.0;</TargetFrameworks>
<TargetFrameworks>net461;netcoreapp3.0;</TargetFrameworks>
<RootNamespace>symspellTest</RootNamespace>
<AssemblyName>symspellTest</AssemblyName>
</PropertyGroup>
Expand Down
6 changes: 3 additions & 3 deletions SymSpell/SymSpell.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
// 2. mistakenly omitted space between two correct words led to one incorrect combined term
// 3. multiple independent input terms with/without spelling errors

// Copyright (C) 2021 Wolf Garbe
// Version: 6.7.1
// Copyright (C) 2022 Wolf Garbe
// Version: 6.7.2
// Author: Wolf Garbe [email protected]
// Maintainer: Wolf Garbe [email protected]
// URL: https://github.com/wolfgarbe/symspell
// Description: https://seekstorm.com/blog/1000x-spelling-correction/
//
// MIT License
// Copyright (c) 2020 Wolf Garbe
// Copyright (c) 2022 Wolf Garbe
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
// documentation files (the "Software"), to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
Expand Down
8 changes: 3 additions & 5 deletions SymSpell/SymSpell.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,13 @@
<Company>Wolf Garbe &lt;[email protected]&gt;</Company>
<Product>SymSpell</Product>
<Description>Spelling correction &amp; Fuzzy search: 1 million times faster through Symmetric Delete spelling correction algorithm</Description>
<Copyright>Copyright (C) 2021 Wolf Garbe</Copyright>
<Copyright>Copyright (C) 2022 Wolf Garbe</Copyright>
<PackageProjectUrl>https://github.com/wolfgarbe/symspell</PackageProjectUrl>
<RepositoryUrl>https://github.com/wolfgarbe</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>symspell, spelling-correction, spellcheck, spell-check, spelling, fuzzy-search, approximate-string-matching, edit-distance, levenshtein, levenshtein-distance, damerau-levenshtein, word segmentation</PackageTags>
<PackageReleaseNotes>framework target changed from net472 to net47 \r\n
framework target added netcoreapp3.0 \r\n
more common contractions added to frequency_dictionary_en_82_765.txt</PackageReleaseNotes>
<Version>6.7.1</Version>
<PackageReleaseNotes>Exception fixed in WordSegmentation</PackageReleaseNotes>
<Version>6.7.2</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>

Expand Down

0 comments on commit 115e25f

Please sign in to comment.