Skip to content

Commit

Permalink
Update version to 5.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Windows10CE committed Jul 29, 2022
1 parent 4e34c69 commit 9d3822b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BepInEx.Hacknet/HacknetChainloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ private static Tuple<string, string, string> __UpdaterData
"BepInEx/core/BepInEx.Hacknet.dll"
);

public const string VERSION = "5.1.0";
public const string VERSION = "5.2.0";
public static readonly Version Version = Version.Parse(VERSION);

public static HacknetChainloader Instance;
Expand Down
2 changes: 1 addition & 1 deletion PathfinderAPI/Util/AssemblyAssociatedList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Pathfinder.Util;
public class AssemblyAssociatedList<T>
{
private Dictionary<Assembly, List<T>> asmDictionary = new Dictionary<Assembly, List<T>>();
private ReadOnlyCollection<T>? _allItems = null;
private ReadOnlyCollection<T> _allItems = null;
public ReadOnlyCollection<T> AllItems {
get {
if(_allItems == null)
Expand Down

0 comments on commit 9d3822b

Please sign in to comment.