Skip to content

Commit

Permalink
Updated changelog for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
Kittyfisto committed Jul 21, 2020
1 parent c293c0c commit 1dba9ab
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/GlobalAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("0.9.2.0")]
[assembly: AssemblyFileVersion("0.9.2.0")]
[assembly: AssemblyInformationalVersion("0.9.2.0")]
[assembly: AssemblyVersion("0.9.3.0")]
[assembly: AssemblyFileVersion("0.9.3.0")]
[assembly: AssemblyInformationalVersion("0.9.3.0")]
19 changes: 19 additions & 0 deletions src/Tailviewer/Changelog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,25 @@ static Changelog()
AddV090();
AddV091();
AddV092();
AddV093();
}

private static void AddV093()
{
var features = new[]
{
"Fully customized color settings for log levels [#216](https://github.com/Kittyfisto/Tailviewer/issues/216)"
};
var bugfixes = new string[]
{};
var misc = new[]
{
"Add setting for tab size [#232](https://github.com/Kittyfisto/Tailviewer/issues/232)",
};
var releaseDate = new DateTime(2020, 7, 21);
var version = new Version(0, 9, 3);
var change = new Change(releaseDate, version, features, bugfixes, misc);
AllChanges.Add(change);
}

private static void AddV092()
Expand Down

0 comments on commit 1dba9ab

Please sign in to comment.