Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update current stable version to 4.2 #1721

Merged
merged 1 commit into from
Oct 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
required: false
version-core:
type: string
default: "4.1.0"
default: "4.2.0"
description: The core part of the version string
required: false
prerelease-version:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ There is also [dotnet new template](https://www.dotvvm.com/docs/tutorials/how-to

| | ASP.NET Core | OWIN |
|-------------------------|-----------------------------|-----------------------|
| Current stable version | `DotVVM.AspNetCore 4.1.*` | `DotVVM.Owin 4.1.*` |
| Current stable version | `DotVVM.AspNetCore 4.2.*` | `DotVVM.Owin 4.2.*` |
| Minimum runtime version | `.NET 6.0` | `.NET 4.7.2` |
| Minimum ASP.NET version | `ASP.NET Core 6.0` | `OWIN 4.2.2` |

Expand Down
1 change: 1 addition & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Any vulnerabilities that affect older versions will be considered on a case-by-c

| Version | Supported |
| ------- | ------------------ |
| 4.2.x | :white_check_mark: |
| 4.1.x | :white_check_mark: |
| 4.0.x | :white_check_mark: |
| < 4.0 | :x: |
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Authors>RIGANTI</Authors>
<Description>DotVVM is an open source ASP.NET-based framework which allows to build interactive web apps easily by using mostly C# and HTML.</Description>
<PackageTags>dotvvm;asp.net;mvvm;owin;dotnetcore</PackageTags>
<Version>4.1.0</Version>
<Version>4.2.0</Version>
<PackageIcon>package-icon.png</PackageIcon>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/riganti/dotvvm.git</RepositoryUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/Templates/content/EmptyWeb/DotvvmApplication1.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotVVM.AspNetCore" Version="4.1.*" />
<PackageReference Include="DotVVM.AspNetCore" Version="4.2.*" />
</ItemGroup>
<Target Name="CreateWWWRoot" AfterTargets="AfterPublish">
<MakeDir Directories="$(PublishDir)wwwroot" Condition="!Exists('$(PublishDir)wwwroot')" />
Expand Down
Loading