Skip to content

Commit 9d6055e

Browse files
committed
Add 1.0.2 to list of supported versions
1 parent fbde79b commit 9d6055e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

TinCan/TCAPIVersion.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace TinCan
2020
{
2121
public sealed class TCAPIVersion
2222
{
23-
//public static readonly TCAPIVersion V102 = new TCAPIVersion("1.0.2");
23+
public static readonly TCAPIVersion V102 = new TCAPIVersion("1.0.2");
2424
public static readonly TCAPIVersion V101 = new TCAPIVersion("1.0.1");
2525
public static readonly TCAPIVersion V100 = new TCAPIVersion("1.0.0");
2626
public static readonly TCAPIVersion V095 = new TCAPIVersion("0.95");
@@ -41,7 +41,7 @@ public static Dictionary<String, TCAPIVersion> GetKnown()
4141
}
4242

4343
known = new Dictionary<String, TCAPIVersion>();
44-
//known.Add("1.0.2", V102);
44+
known.Add("1.0.2", V102);
4545
known.Add("1.0.1", V101);
4646
known.Add("1.0.0", V100);
4747
known.Add("0.95", V095);
@@ -57,7 +57,7 @@ public static Dictionary<String, TCAPIVersion> GetSupported()
5757
}
5858

5959
supported = new Dictionary<String, TCAPIVersion>();
60-
//supported.Add("1.0.2", V102);
60+
supported.Add("1.0.2", V102);
6161
supported.Add("1.0.1", V101);
6262
supported.Add("1.0.0", V100);
6363

0 commit comments

Comments
 (0)