diff --git a/README.md b/README.md
index 77a7de5..06d23f2 100644
--- a/README.md
+++ b/README.md
@@ -18,8 +18,8 @@ but SymSpell needs to generate **only 25 deletes** to cover them all, both at pr
```
-Copyright (c) 2021 Wolf Garbe
-Version: 6.7.1
+Copyright (c) 2022 Wolf Garbe
+Version: 6.7.2
Author: Wolf Garbe
Maintainer: Wolf Garbe
URL: https://github.com/wolfgarbe/symspell
@@ -27,7 +27,7 @@ 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
@@ -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
diff --git a/SymSpell.Benchmark/SymSpell.Benchmark.csproj b/SymSpell.Benchmark/SymSpell.Benchmark.csproj
index cec8f48..d3e2195 100644
--- a/SymSpell.Benchmark/SymSpell.Benchmark.csproj
+++ b/SymSpell.Benchmark/SymSpell.Benchmark.csproj
@@ -2,11 +2,11 @@
Exe
- netcoreapp2.0
+ netcoreapp3.0
- DEBUG;NETCOREAPP2_0;
+ DEBUG;NETCOREAPP3_0;
true
true
diff --git a/SymSpell.CommandLine/SymSpell.CommandLine.csproj b/SymSpell.CommandLine/SymSpell.CommandLine.csproj
index 08e0907..41fd732 100644
--- a/SymSpell.CommandLine/SymSpell.CommandLine.csproj
+++ b/SymSpell.CommandLine/SymSpell.CommandLine.csproj
@@ -2,7 +2,7 @@
Exe
- netcoreapp2.0
+ netcoreapp3.0
diff --git a/SymSpell.CompoundDemo/SymSpell.CompoundDemo.csproj b/SymSpell.CompoundDemo/SymSpell.CompoundDemo.csproj
index ed7b598..f96c66b 100644
--- a/SymSpell.CompoundDemo/SymSpell.CompoundDemo.csproj
+++ b/SymSpell.CompoundDemo/SymSpell.CompoundDemo.csproj
@@ -2,11 +2,11 @@
Exe
- netcoreapp2.0
+ netcoreapp3.0
- NETCOREAPP2_0;
+ NETCOREAPP3_0;
true
true
diff --git a/SymSpell.Demo/SymSpell.Demo.csproj b/SymSpell.Demo/SymSpell.Demo.csproj
index ed7b598..0d80b95 100644
--- a/SymSpell.Demo/SymSpell.Demo.csproj
+++ b/SymSpell.Demo/SymSpell.Demo.csproj
@@ -2,7 +2,7 @@
Exe
- netcoreapp2.0
+ netcoreapp3.0
diff --git a/SymSpell.SegmentationDemo/SymSpell.SegmentationDemo.csproj b/SymSpell.SegmentationDemo/SymSpell.SegmentationDemo.csproj
index 990b8a6..3d3cf80 100644
--- a/SymSpell.SegmentationDemo/SymSpell.SegmentationDemo.csproj
+++ b/SymSpell.SegmentationDemo/SymSpell.SegmentationDemo.csproj
@@ -2,11 +2,11 @@
Exe
- netcoreapp2.0
+ netcoreapp3.0
- NETCOREAPP2_0;
+ NETCOREAPP3_0;
true
true
diff --git a/SymSpell.Test/SymSpell.Test.csproj b/SymSpell.Test/SymSpell.Test.csproj
index ffba6c1..45d6434 100644
--- a/SymSpell.Test/SymSpell.Test.csproj
+++ b/SymSpell.Test/SymSpell.Test.csproj
@@ -1,7 +1,7 @@
- net461;netcoreapp2.1;netcoreapp3.0;
+ net461;netcoreapp3.0;
symspellTest
symspellTest
diff --git a/SymSpell/SymSpell.cs b/SymSpell/SymSpell.cs
index 78a5b97..53d3f62 100644
--- a/SymSpell/SymSpell.cs
+++ b/SymSpell/SymSpell.cs
@@ -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 wolf.garbe@seekstorm.com
// Maintainer: Wolf Garbe wolf.garbe@seekstorm.com
// 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,
diff --git a/SymSpell/SymSpell.csproj b/SymSpell/SymSpell.csproj
index 3c90d9f..8c31c01 100644
--- a/SymSpell/SymSpell.csproj
+++ b/SymSpell/SymSpell.csproj
@@ -9,15 +9,13 @@
Wolf Garbe <wolf.garbe@seekstorm.com>
SymSpell
Spelling correction & Fuzzy search: 1 million times faster through Symmetric Delete spelling correction algorithm
- Copyright (C) 2021 Wolf Garbe
+ Copyright (C) 2022 Wolf Garbe
https://github.com/wolfgarbe/symspell
https://github.com/wolfgarbe
Git
symspell, spelling-correction, spellcheck, spell-check, spelling, fuzzy-search, approximate-string-matching, edit-distance, levenshtein, levenshtein-distance, damerau-levenshtein, word segmentation
- 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
- 6.7.1
+ Exception fixed in WordSegmentation
+ 6.7.2
MIT