Skip to content

Commit c124e76

Browse files
committed
1.3.0-beta2 preparations
1 parent 6925828 commit c124e76

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@ _ReSharper*/
3434
!*.pdb
3535
packages/
3636
Help/
37+
.idea/

Main/nuget/CodeJam.Main.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>CodeJam</id>
5-
<version>1.3.0-beta1</version>
5+
<version>1.3.0-beta2</version>
66
<title>CodeJam .NET Library</title>
77
<authors>Andrew Koryavchenko, ig-sinicyn, Igor Tkachev</authors>
88
<licenseUrl>https://github.com/rsdn/CodeJam/blob/master/LICENSE</licenseUrl>

Main/nuget/Readme.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
CodeJam 1.3.0-beta1 Release Notes
1+
CodeJam 1.3.0-beta2 Release Notes
22
---------------------------------
33

44
What's new in 1.3.0-beta2
55
-------------------------
6-
* Enumerable.ToDiagnosticString method
76
* Memoize overloads with LazyThreadSafetyMode
7+
* EnumerableExtensions.GroupWhile methods
8+
* Code cleanup
89

910
What's new in 1.3.0-beta1
1011
-------------------------

Main/src/Collections/Enumerable/IndexedItem.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
using System;
22
using System.Collections.Generic;
33

4+
using JetBrains.Annotations;
5+
46
namespace CodeJam.Collections
57
{
68
/// <summary>
79
/// Represents an element associated with its index in a sequence.
810
/// </summary>
11+
[PublicAPI]
912
public struct IndexedItem<T> : IEquatable<IndexedItem<T>>
1013
{
1114
/// <summary>

Main/src/Ranges/CompositeRange.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
namespace CodeJam.Ranges
66
{
77
/// <summary>Helper methods for the <seealso cref="CompositeRange{T}"/>.</summary>
8+
[PublicAPI]
89
public static partial class CompositeRange
910
{
1011
/// <summary>Creates the composite range.</summary>

0 commit comments

Comments
 (0)