From 09ca62b15166981dc94e02ca88ff48aa77301f3c Mon Sep 17 00:00:00 2001 From: Sergiu Ciumac Date: Tue, 27 Feb 2024 20:39:53 +0200 Subject: [PATCH] Version bump to v9.4.2 --- src/SoundFingerprinting.Tests/Properties/AssemblyInfo.cs | 4 ++-- src/SoundFingerprinting/Properties/AssemblyInfo.cs | 4 ++-- src/SoundFingerprinting/SoundFingerprinting.csproj | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/SoundFingerprinting.Tests/Properties/AssemblyInfo.cs b/src/SoundFingerprinting.Tests/Properties/AssemblyInfo.cs index b7d16022..3dcfba6b 100644 --- a/src/SoundFingerprinting.Tests/Properties/AssemblyInfo.cs +++ b/src/SoundFingerprinting.Tests/Properties/AssemblyInfo.cs @@ -11,5 +11,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("4cac962e-ebc5-4006-a1e0-7ffb3e2483c2")] -[assembly: AssemblyVersion("9.4.0.101")] -[assembly: AssemblyInformationalVersion("9.4.0.101")] +[assembly: AssemblyVersion("9.4.2.100")] +[assembly: AssemblyInformationalVersion("9.4.2.100")] diff --git a/src/SoundFingerprinting/Properties/AssemblyInfo.cs b/src/SoundFingerprinting/Properties/AssemblyInfo.cs index a60b095c..c067e08d 100644 --- a/src/SoundFingerprinting/Properties/AssemblyInfo.cs +++ b/src/SoundFingerprinting/Properties/AssemblyInfo.cs @@ -19,5 +19,5 @@ [assembly: InternalsVisibleTo("SoundFingerprinting.FFT.FFTW")] [assembly: InternalsVisibleTo("SoundFingerprinting.FFT.FFTW.Tests")] -[assembly: AssemblyVersion("9.4.0.101")] -[assembly: AssemblyInformationalVersion("9.4.0.101")] +[assembly: AssemblyVersion("9.4.2.100")] +[assembly: AssemblyInformationalVersion("9.4.2.100")] diff --git a/src/SoundFingerprinting/SoundFingerprinting.csproj b/src/SoundFingerprinting/SoundFingerprinting.csproj index 3e726a41..2355ce2d 100644 --- a/src/SoundFingerprinting/SoundFingerprinting.csproj +++ b/src/SoundFingerprinting/SoundFingerprinting.csproj @@ -4,14 +4,14 @@ true false enable - 9.4.0 + 9.4.2 Sergiu Ciumac SoundFingerprinting is a C# framework that implements an efficient algorithm of audio fingerprinting and identification. Designed for developers, enthusiasts, researchers in the fields of audio processing, data mining, digital signal processing. https://github.com/addictedcs/soundfingerprinting https://github.com/AddictedCS/soundfingerprinting git - Version 9.4.0 + Version 9.4.2 - Contains an important improvement to QueryCommand, allowing a much faster lookup for the use-cases when the track and the query are very long and almost identical. - The improvement is rooted in the idea of returning Candidates from the IModelService instead of list of SubFingerprints. This provided knowledge on which hashed fingerprint matched with the query. - To further improve the API design, methods related to the correct functioning of the QueryCommand were extracted into IQueryService interface (from which IModelService derives).