Skip to content

Commit aa483eb

Browse files
committed
Updated version
1 parent 9b4e0e4 commit aa483eb

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

Changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 0.3.0
2+
3+
## ElectronNET.Core
4+
5+
- Updated infrastructure (#937, #939) @softworkz
6+
- Fixed output path for `electron-builder` (#942) @softworkz
7+
- Fixed previous API break using exposed `JsonElement` objects (#938) @softworkz
8+
19
# 0.2.0
210

311
## ElectronNET.Core

docs/GettingStarted/Console-App.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Add the Electron.NET configuration to your `.csproj` file:
5454
</PropertyGroup>
5555

5656
<ItemGroup>
57-
<PackageReference Include="ElectronNET.Core" Version="0.2.0" />
57+
<PackageReference Include="ElectronNET.Core" Version="0.3.0" />
5858
</ItemGroup>
5959
```
6060

src/ElectronNET.ConsoleApp/ElectronNET.ConsoleApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
<ProjectReference Include="..\ElectronNET.API\ElectronNET.API.csproj" Condition="$(ElectronNetDevMode)" />
7171
</ItemGroup>
7272
<ItemGroup>
73-
<PackageReference Include="ElectronNET.Core" Version="0.2.0" Condition="'$(ElectronNetDevMode)' != 'true'" />
73+
<PackageReference Include="ElectronNET.Core" Version="0.3.0" Condition="'$(ElectronNetDevMode)' != 'true'" />
7474
</ItemGroup>
7575

7676
<Import Project="..\ElectronNET\build\ElectronNET.Core.targets" Condition="$(ElectronNetDevMode)" />

src/ElectronNET.WebApp/ElectronNET.WebApp.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@
7676
<ProjectReference Include="..\ElectronNET.AspNet\ElectronNET.AspNet.csproj" Condition="$(ElectronNetDevMode)" />
7777
</ItemGroup>
7878
<ItemGroup>
79-
<PackageReference Include="ElectronNET.Core" Version="0.2.0" Condition="'$(ElectronNetDevMode)' != 'true'" />
80-
<PackageReference Include="ElectronNET.Core.AspNet" Version="0.2.0" Condition="'$(ElectronNetDevMode)' != 'true'" />
79+
<PackageReference Include="ElectronNET.Core" Version="0.3.0" Condition="'$(ElectronNetDevMode)' != 'true'" />
80+
<PackageReference Include="ElectronNET.Core.AspNet" Version="0.3.0" Condition="'$(ElectronNetDevMode)' != 'true'" />
8181
<PackageReference Include="Microsoft.TypeScript.MSBuild" Version="5.9.3" />
8282
</ItemGroup>
8383

src/common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>0.2.0</Version>
3+
<Version>0.3.0</Version>
44
<PackageNamePrefix>ElectronNET.Core</PackageNamePrefix>
55
<Authors>Gregor Biswanger, Florian Rappl, softworkz</Authors>
66
<Product>Electron.NET</Product>

0 commit comments

Comments
 (0)