Skip to content

Commit e321a12

Browse files
committed
Update various dependencies
1 parent e23dc9f commit e321a12

File tree

8 files changed

+20
-10
lines changed

8 files changed

+20
-10
lines changed

src/Plotly.NET.CSharp/Plotly.NET.CSharp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
<ItemGroup>
3838
<None Include="..\..\docs\img\logo.png" Pack="true" PackagePath="\" />
39-
<ProjectReference Include="..\Plotly.NET\Plotly.NET.fsproj" PackageVersion="[4.1.0, 5.0.0)" />
39+
<ProjectReference Include="..\Plotly.NET\Plotly.NET.fsproj" PackageVersion="[5.0.0, 6.0.0)" />
4040
</ItemGroup>
4141
<Target Name="UseExplicitPackageVersions" BeforeTargets="GenerateNuspec">
4242
<ItemGroup>

src/Plotly.NET.ImageExport/Plotly.NET.ImageExport.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
</ItemGroup>
3636

3737
<ItemGroup>
38-
<ProjectReference Include="..\Plotly.NET\Plotly.NET.fsproj" PackageVersion="[4.1.0, 5.0.0)" />
38+
<ProjectReference Include="..\Plotly.NET\Plotly.NET.fsproj" PackageVersion="[5.0.0, 6.0.0)" />
3939
<PackageReference Include="DynamicObj" Version="2.0.0" />
40-
<PackageReference Include="PuppeteerSharp" Version="10.1.0" />
40+
<PackageReference Include="PuppeteerSharp" Version="12.0.0" />
4141
</ItemGroup>
4242
<Target Name="UseExplicitPackageVersions" BeforeTargets="GenerateNuspec">
4343
<ItemGroup>

src/Plotly.NET.ImageExport/PuppeteerSharpRenderer.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ type PuppeteerSharpRenderer() =
8989
let launchOptions =
9090
PuppeteerSharpRendererOptions.launchOptions
9191

92-
launchOptions.ExecutablePath <- revision.ExecutablePath
92+
launchOptions.ExecutablePath <- revision.GetExecutablePath()
9393

9494
return! Puppeteer.LaunchAsync(launchOptions)
9595
| Some p ->

src/Plotly.NET.ImageExport/RELEASE_NOTES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
### 6.0.0 - TBD
22

3+
- BREAKING: [Add Scale option to all image export extensions](https://github.com/plotly/Plotly.NET/commit/5090570cb0fd8281a4c197421994cec719b82ac9)
4+
- BREAKING: Update PuppeteerSharp dependency to 12.0.0
35
- bump version range of Plotly.NET to [5.0.0, 6.0.0)
46

57
### 5.0.1 - July 25 2023

src/Plotly.NET.Interactive/Plotly.NET.Interactive.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
</ItemGroup>
5050

5151
<ItemGroup>
52-
<ProjectReference Include="..\Plotly.NET\Plotly.NET.fsproj" PackageVersion="[4.1.0, 5.0.0)" />
52+
<ProjectReference Include="..\Plotly.NET\Plotly.NET.fsproj" PackageVersion="[5.0.0, 6.0.0)" />
5353
<PackageReference Include="Microsoft.DotNet.Interactive" Version="1.0.0-beta.23514.2" />
5454
<PackageReference Include="Microsoft.DotNet.Interactive.Formatting" Version="1.0.0-beta.23514.2" />
5555
</ItemGroup>

src/Plotly.NET/RELEASE_NOTES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,14 @@
99
- [add `xref` and `yref` attributes for Legend and ColorBar](https://github.com/plotly/Plotly.NET/commit/a3e1abcfda7b316c704d477471be1294860b48b7)
1010
- v2.24:
1111
- [add pattern to multiple traces](https://github.com/plotly/Plotly.NET/commit/f75125e7e8514299bc794ddddbaee6370e5b420a)
12+
- v2.25:
13+
- [Add "Equal Earth" projection to geo subplots](https://github.com/plotly/Plotly.NET/commit/0ea7d3e0da77937e1b9d31bc4a6552d7499a660a)
14+
- [Complete bindings for geo projections](https://github.com/plotly/Plotly.NET/commit/0ea7d3e0da77937e1b9d31bc4a6552d7499a660a)
15+
- [Add options to include legends for shapes and newshape](https://github.com/plotly/Plotly.NET/commit/0ea7d3e0da77937e1b9d31bc4a6552d7499a660a)
1216

17+
- [Plotly.NET.ImageExport (4.0.0 -> 5.0.0)](https://github.com/plotly/Plotly.NET/blob/dev/src/Plotly.NET.ImageExport/RELEASE_NOTES.md)
18+
- [Plotly.NET.Interactive (4.1.0 -> 4.2.0)](https://github.com/plotly/Plotly.NET/blob/dev/src/Plotly.NET.Interactive/RELEASE_NOTES.md)
19+
- [Plotly.NET.CSharp (0.10.0 -> 0.11.0)](https://github.com/plotly/Plotly.NET/blob/dev/src/Plotly.NET.CSharp/RELEASE_NOTES.md)
1320

1421
### 4.2.0 - August 02 2023
1522

tests/Common/FSharpTestBase/FSharpTestBase.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
<ItemGroup>
99
<EmbeddedResource Include="..\..\..\docs\img\logo.png" />
10-
<EmbeddedResource Include="..\..\..\src\Plotly.NET\plotly-2.25.2.min.js" />
11-
<EmbeddedResource Include="..\..\..\src\Plotly.NET\plotly-2.25.2.min.js.LICENSE.txt" />
10+
<EmbeddedResource Include="..\..\..\src\Plotly.NET\plotly-2.26.2.min.js" />
11+
<EmbeddedResource Include="..\..\..\src\Plotly.NET\plotly-2.26.2.min.js.LICENSE.txt" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

tests/CoreTests/CoreTests/CoreTests.fsproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<EmbeddedResource Include="..\..\..\src\Plotly.NET\plotly-2.25.2.min.js" />
12-
<EmbeddedResource Include="..\..\..\src\Plotly.NET\plotly-2.25.2.min.js.LICENSE.txt" />
11+
<EmbeddedResource Include="..\..\..\src\Plotly.NET\plotly-2.26.2.min.js" />
12+
<EmbeddedResource Include="..\..\..\src\Plotly.NET\plotly-2.26.2.min.js.LICENSE.txt" />
1313
<!--HTMLCodegen-->
1414
<Compile Include="HTMLCodegen\Chart2D.fs" />
1515
<Compile Include="HTMLCodegen\Chart3D.fs" />
@@ -47,8 +47,9 @@
4747
</ItemGroup>
4848

4949
<ItemGroup>
50+
<PackageReference Update="FSharp.Core" Version="7.*" />
5051
<PackageReference Include="Deedle" Version="2.4.1" />
51-
<PackageReference Include="Expecto" Version="9.*" />
52+
<PackageReference Include="Expecto" Version="10.*" />
5253
<PackageReference Include="FSharp.Data" Version="4.2.0" />
5354
<PackageReference Include="YoloDev.Expecto.TestSdk" Version="0.*" />
5455
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.*" />

0 commit comments

Comments
 (0)