Skip to content

Commit

Permalink
fix: use v1 for tag links (#3641)
Browse files Browse the repository at this point in the history
* fix: use v1 for tag links

* fix: Security update for system.text.json in test projects
  • Loading branch information
AlanRynne authored Oct 15, 2024
1 parent 429dcfd commit 2d9942b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ConnectorGrasshopper/ConnectorGrasshopperShared/Loader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ private void AddSpeckleMenu(MenuStrip mainMenu)
speckleMenu.DropDown.Items.Add(
"Tutorials",
Resources.tutorials16,
(o, args) => Open.Url("https://speckle.systems/tag/grasshopper/")
(o, args) => Open.Url("https://v1.speckle.systems/tag/grasshopper/")
);
speckleMenu.DropDown.Items.Add(
"Docs",
Expand Down Expand Up @@ -533,7 +533,7 @@ public static RhinoDoc GetCurrentDocument()
Console.WriteLine(" Model units:" + _headlessDoc.ModelUnitSystem);
return _headlessDoc;
}

return RhinoDoc.ActiveDoc;
#else
return RhinoDoc.ActiveDoc;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 2d9942b

Please sign in to comment.