Skip to content

Commit

Permalink
Update version to v2.3.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
damienhaynes committed Sep 1, 2019
1 parent e3ef39f commit 3ae9851
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.3.6.0")]
[assembly: AssemblyFileVersion("2.3.6.0")]
[assembly: AssemblyVersion("2.3.7.0")]
[assembly: AssemblyFileVersion("2.3.7.0")]
6 changes: 6 additions & 0 deletions Sites/IMDb.cs
Original file line number Diff line number Diff line change
Expand Up @@ -756,6 +756,12 @@ private void SetCSVHelperOptions()
};
}

/// <summary>
/// Returns records of a IMDb CSV rating or list file.
/// </summary>
/// <typeparam name="T">IMDbListItem or IMDbRateItem</typeparam>
/// <param name="aFilename">Full path to CSV file to read</param>
/// <returns>Records of type T</returns>
private List<T> ParseCsvFile<T>(string aFilename)
{
using (var reader = new StreamReader(aFilename))
Expand Down

0 comments on commit 3ae9851

Please sign in to comment.