Skip to content

Commit

Permalink
V 1.0.59.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-englert committed Jun 8, 2017
1 parent 91c3aa5 commit f3f748f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions Documentation/Content/VersionHistory/VersionHistory.aml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
<title>Version History</title>
<content>
<list class="bullet">
<listItem>
<para>1.0.59.0</para>
<list class="bullet">
<listItem><para>Add a VirtualizingDoubleClickPanel (same as DoubleClickPanel, but derived from VirtualizingPanel).</para></listItem>
</list>
</listItem>
<listItem>
<para>1.0.58.0</para>
<list class="bullet">
Expand Down
2 changes: 1 addition & 1 deletion TomsToolbox.Core/ExceptionExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static class ExceptionExtensions
/// <returns>The exception and all inner exceptions.</returns>
[ItemNotNull]
[NotNull]
public static IEnumerable<Exception> ExceptionChain(this Exception ex)
public static IEnumerable<Exception> ExceptionChain([CanBeNull] this Exception ex)
{
Contract.Ensures(Contract.Result<IEnumerable<Exception>>() != null);

Expand Down
2 changes: 1 addition & 1 deletion Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@

internal static class Product
{
public const string Version = "1.0.58.0";
public const string Version = "1.0.59.0";
}

0 comments on commit f3f748f

Please sign in to comment.