Skip to content

Commit

Permalink
Update dependencies and bumb version to 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kfl committed Mar 9, 2024
1 parent 156e4b6 commit d6f98ea
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Leveraging F#'s functional programming capabilities, DIKU-Canvas emphasizes:
Make an F# script, say `myFirstCanvas.fsx`, with a NuGet reference:

```fsharp
#r "nuget:DIKU.Canvas, 2.0.1"
#r "nuget:DIKU.Canvas, 2.0.3"
open Canvas
open Color
Expand All @@ -38,7 +38,7 @@ This should result in a window with a green square in the top left corner on a b
If you want a specific version you edit the reference to be, e.g.,:

```fsharp
#r "nuget:DIKU.Canvas, 2.0.1-alpha8"
#r "nuget:DIKU.Canvas, 2.0.4-alpha8"
```


Expand Down
8 changes: 4 additions & 4 deletions canvas.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<PackageId>DIKU.Canvas</PackageId>
<Version>2.0.2</Version>
<Version>2.0.3</Version>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Authors>Martin Elsman, Ken Friis Larsen, Jon Sporring, Mads Obitsø</Authors>
<Company>DIKU</Company>
Expand Down Expand Up @@ -75,8 +75,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="SixLabors.Fonts" Version="1.0.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.0.1" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="1.0.0" />
<PackageReference Include="SixLabors.Fonts" Version="2.0.2" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.3" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="2.1.2" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ This should result in a window with a green square in the top left corner on a b
If you want a specific version you edit the reference to be, e.g.,:

```fsharp
#r "nuget:DIKU.Canvas, 2.0.1-alpha8"
#r "nuget:DIKU.Canvas, 2.0.3-alpha8"
```


Expand Down

0 comments on commit d6f98ea

Please sign in to comment.