Skip to content

Commit

Permalink
nuget version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Jack Dermody committed Sep 23, 2024
1 parent a1ba951 commit 4d445e0
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BrightData.MKL/BrightData.MKL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="MKL.NET" Version="1.5.0" />
<PackageReference Include="MKL.NET" Version="1.6.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion BrightData/BrightData.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CommunityToolkit.HighPerformance" Version="8.2.2" />
<PackageReference Include="CommunityToolkit.HighPerformance" Version="8.3.2" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
</ItemGroup>

Expand Down
48 changes: 48 additions & 0 deletions BrightData/BrightData.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18235,9 +18235,57 @@
<param name="index">Index of element to remove</param>
<exception cref="T:System.ArgumentOutOfRangeException"></exception>
</member>
<member name="T:BrightData.Types.Graph.DirectedGraph`1">
<summary>
Directed graph
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="P:BrightData.Types.Graph.DirectedGraph`1.Size">
<inheritdoc />
</member>
<member name="M:BrightData.Types.Graph.DirectedGraph`1.TryGetValue(System.UInt32,System.Nullable{`0}@)">
<summary>
Returns the value associated with the node
</summary>
<param name="nodeIndex"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:BrightData.Types.Graph.DirectedGraph`1.EnumerateConnectedNodes(System.UInt32)">
<summary>
Enumerates the connected nodes from a single node
</summary>
<param name="nodeIndex"></param>
<returns></returns>
</member>
<member name="T:BrightData.Types.Graph.DirectedGraphBuilder`1">
<summary>
Builds a directed graph
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="M:BrightData.Types.Graph.DirectedGraphBuilder`1.Add(`0)">
<summary>
Add a new node
</summary>
<param name="node"></param>
<returns></returns>
</member>
<member name="M:BrightData.Types.Graph.DirectedGraphBuilder`1.AddEdge(System.UInt32,System.UInt32)">
<summary>
Adds an edge between two nodes
</summary>
<param name="fromNodeIndex"></param>
<param name="toNodeIndex"></param>
<returns></returns>
</member>
<member name="M:BrightData.Types.Graph.DirectedGraphBuilder`1.Build">
<summary>
Builds the graph
</summary>
<returns></returns>
</member>
<member name="T:BrightData.Types.Graph.FixedSizeWeightedDynamicGraph`3">
<summary>
A fixed size weighted graph
Expand Down

0 comments on commit 4d445e0

Please sign in to comment.