Skip to content

Commit 7cb0d22

Browse files
committed
Update assembly version, nuspec version, and gitignore.
1 parent 4e75331 commit 7cb0d22

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,4 +242,5 @@ ModelManifest.xml
242242
.paket/paket.exe
243243

244244
# FAKE - F# Make
245-
.fake/
245+
.fake/
246+
*.DS_Store

build/F23.StringSimilarity.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>F23.StringSimilarity</id>
5-
<version>1.1.1</version>
5+
<version>1.2.0</version>
66
<title>StringSimilarity.NET</title>
77
<authors>James Blair</authors>
88
<owners>feature[23]</owners>
@@ -14,7 +14,7 @@
1414
<licenseUrl>https://raw.githubusercontent.com/feature23/StringSimilarity.NET/master/LICENSE</licenseUrl>
1515
<iconUrl>https://raw.githubusercontent.com/feature23/StringSimilarity.NET/master/logo.png</iconUrl>
1616
<requireLicenseAcceptance>false</requireLicenseAcceptance>
17-
<tags>string similarity distance cosine damerau jaccard jaro-winkler levenshtein ngram qgram shingle</tags>
17+
<tags>string similarity distance cosine damerau jaccard jaro-winkler levenshtein ngram qgram shingle sift4</tags>
1818
</metadata>
1919
<files>
2020
<file src="..\src\F23.StringSimilarity\bin\release\F23.StringSimilarity.dll" target="lib" />

src/F23.StringSimilarity/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.1.1.0")]
36-
[assembly: AssemblyFileVersion("1.1.1.0")]
35+
[assembly: AssemblyVersion("1.2.0.0")]
36+
[assembly: AssemblyFileVersion("1.2.0.0")]
3737

3838
[assembly: InternalsVisibleTo("F23.StringSimilarity.Tests")]

test/F23.StringSimilarity.Tests/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

54
// General Information about an assembly is controlled through the following
@@ -32,5 +31,5 @@
3231
// You can specify all the values or you can default the Build and Revision Numbers
3332
// by using the '*' as shown below:
3433
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.1.1.0")]
36-
[assembly: AssemblyFileVersion("1.1.1.0")]
34+
[assembly: AssemblyVersion("1.2.0.0")]
35+
[assembly: AssemblyFileVersion("1.2.0.0")]

0 commit comments

Comments
 (0)