Skip to content

Commit

Permalink
1.3.0-beta2 preparations
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewvk committed Dec 19, 2016
1 parent 6925828 commit c124e76
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ _ReSharper*/
!*.pdb
packages/
Help/
.idea/
2 changes: 1 addition & 1 deletion Main/nuget/CodeJam.Main.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>CodeJam</id>
<version>1.3.0-beta1</version>
<version>1.3.0-beta2</version>
<title>CodeJam .NET Library</title>
<authors>Andrew Koryavchenko, ig-sinicyn, Igor Tkachev</authors>
<licenseUrl>https://github.com/rsdn/CodeJam/blob/master/LICENSE</licenseUrl>
Expand Down
5 changes: 3 additions & 2 deletions Main/nuget/Readme.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
CodeJam 1.3.0-beta1 Release Notes
CodeJam 1.3.0-beta2 Release Notes
---------------------------------

What's new in 1.3.0-beta2
-------------------------
* Enumerable.ToDiagnosticString method
* Memoize overloads with LazyThreadSafetyMode
* EnumerableExtensions.GroupWhile methods
* Code cleanup

What's new in 1.3.0-beta1
-------------------------
Expand Down
3 changes: 3 additions & 0 deletions Main/src/Collections/Enumerable/IndexedItem.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
using System;
using System.Collections.Generic;

using JetBrains.Annotations;

namespace CodeJam.Collections
{
/// <summary>
/// Represents an element associated with its index in a sequence.
/// </summary>
[PublicAPI]
public struct IndexedItem<T> : IEquatable<IndexedItem<T>>
{
/// <summary>
Expand Down
1 change: 1 addition & 0 deletions Main/src/Ranges/CompositeRange.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
namespace CodeJam.Ranges
{
/// <summary>Helper methods for the <seealso cref="CompositeRange{T}"/>.</summary>
[PublicAPI]
public static partial class CompositeRange
{
/// <summary>Creates the composite range.</summary>
Expand Down

0 comments on commit c124e76

Please sign in to comment.