Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
swharden authored Nov 22, 2023
2 parents d6fac5e + a67b7e2 commit e24a283
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ScottPlot5-CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ jobs:
run: dotnet build ${{ env.SLN_SP5_TEST }} --configuration Release
- name: 🧪 Test ScottPlot5
run: dotnet test ${{ env.SLN_SP5_TEST }} --configuration Release --verbosity minimal
- name: 🚚 Full Restore ScottPlot5
- name: 🚚 Workload Restore ScottPlot5
run: dotnet workload restore ${{ env.SLN_SP5_FULL }}
- name: 🚚 Solution Restore ScottPlot5
run: dotnet restore ${{ env.SLN_SP5_FULL }}
- name: 🛠️ Full Build ScottPlot5
run: dotnet build ${{ env.SLN_SP5_FULL }} --configuration Release
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ jobs:
run: dotnet build ${{ env.TEST_SOLUTION }} --configuration Release
- name: 🧪 Test
run: dotnet test ${{ env.TEST_SOLUTION }} --configuration Release --no-restore --verbosity minimal
- name: 🚚 Workload Restore
run: dotnet workload restore ${{ env.FULL_SOLUTION }}
- name: 🚚 Full Restore
run: dotnet restore ${{ env.FULL_SOLUTION }}
- name: 🛠️ Full Build
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
## ScottPlot 5.0.9-beta (in development)
* Signal: Improved support for datasets with repeating values (#2933, #2935) _Thanks @StendProg_
* Blazor: Added a Blazor control (#2959) _Thanks @sulivanganter_
* Layout: Expose `Matched` layout engine (#2881) _Thanks @proplunger_

## ScottPlot 4.1.68 (in development)
* Axis: Added `IsReverse` property to let users invert the orientation of an axis (#2958) _Thanks @HandsomeGoldenKnight_
Expand Down
2 changes: 1 addition & 1 deletion src/ScottPlot5/ScottPlot5/LayoutEngines/Matched.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/// <summary>
/// Generate layouts that match layouts of another control
/// </summary>
internal class Matched : ILayoutEngine
public class Matched : ILayoutEngine
{
private Plot ReferencePlot { get; }

Expand Down

0 comments on commit e24a283

Please sign in to comment.