Skip to content

Commit 7825f19

Browse files
dickydicky
authored andcommitted
Version update.
1 parent 68951e9 commit 7825f19

File tree

8 files changed

+23
-17
lines changed

8 files changed

+23
-17
lines changed

DevApp/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@
44

55
This repo contains the library's source code, full documentation, and live demo's source code. To run the repo:
66

7-
- Get [.NET Core 3.1 SDK](https://dotnet.microsoft.com/download/dotnet-core/3.0).
7+
- Get [.NET 6 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/6.0).
88
- Get [Node.js](https://nodejs.org/en/).
99
- On a VS Code terminal:
1010

1111
```
1212
cd DevApp
1313
npm i
14-
dotnet build
15-
dotnet watch run
14+
dotnet watch
1615
```

DevApp/dist/LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2015-2021 Dicky Suryadi
1+
Copyright 2015-2022 Dicky Suryadi
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

DevApp/dist/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ DotNetify is a free, open source project that lets you create real-time, reactiv
88

99
## What's New
1010

11-
- **v5.0: Scale-out, Vue 3.x support** - [release notes](https://github.com/dsuryd/dotNetify/releases/tag/v5.0).
12-
- v4.1: Async view model - [release notes](https://github.com/dsuryd/dotNetify/releases/tag/v4.1).
13-
- v4.0: Typescript support - [release notes](https://github.com/dsuryd/dotNetify/releases/tag/v4.0).
11+
- **Minimal API** - [release notes](https://github.com/dsuryd/dotNetify/releases/tag/v5.3).
12+
- Scale-out, Vue 3.x support - [release notes](https://github.com/dsuryd/dotNetify/releases/tag/v5.0).
13+
- Async view model - [release notes](https://github.com/dsuryd/dotNetify/releases/tag/v4.1).
14+
15+
**DotNetify.Postgres: [Real-time Web Updates From Your PostgreSQL Database](https://dsuryd.github.io/dotNetify/realtime-postgres/)**
1416

1517
## Features
1618

@@ -31,8 +33,6 @@ DotNetify is a free, open source project that lets you create real-time, reactiv
3133

3234
Documentation and live demo can be found at [https://dotnetify.net](https://dotnetify.net).
3335

34-
[Usage with .NET Core 3.x](https://github.com/dsuryd/dotNetify/issues/159#issuecomment-547691063)
35-
3636
## Code Examples
3737

3838
- React example: [dotnetify-react-demo](https://github.com/dsuryd/dotnetify-react-demo).

DevApp/dist/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dotnetify",
3-
"version": "5.2.2",
3+
"version": "5.3.0",
44
"description": "Simple, lightweight, yet powerful way to build realtime .NET web apps.",
55
"main": "index.js",
66
"types": "dist/typings/index.d.ts",
@@ -42,4 +42,4 @@
4242
"url": "https://github.com/dsuryd/dotNetify/issues"
4343
},
4444
"homepage": "https://github.com/dsuryd/dotNetify"
45-
}
45+
}

DotNetify.sln

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

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.30128.74
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.31903.59
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DotNetifyLib.Core", "DotNetifyLib.Core\DotNetifyLib.Core.csproj", "{BAD3F752-EC12-452C-A569-01F3F150290D}"
77
EndProject
@@ -13,6 +13,12 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DevApp.ViewModels", "DevApp
1313
EndProject
1414
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests", "UnitTests\UnitTests.csproj", "{8834522B-03B1-4C34-98CA-15B8022F1E08}"
1515
EndProject
16+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_License_Readme", "_License_Readme", "{11E35105-5C1D-4C10-8852-296DBEBD590D}"
17+
ProjectSection(SolutionItems) = preProject
18+
LICENSE.md = LICENSE.md
19+
README.md = README.md
20+
EndProjectSection
21+
EndProject
1622
Global
1723
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1824
Debug|Android = Debug|Android

DotNetifyLib.Core/DotNetifyLib.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
99
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
1010
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
11-
<Version>5.2.0</Version>
11+
<Version>5.3.0</Version>
1212
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1313
<Description>Simple, lightweight, yet powerful way to build reactive, real-time web apps. Library for .NET Core.</Description>
1414
<Authors>Dicky Suryadi</Authors>

DotNetifyLib.SignalR/DotNetifyLib.SignalR.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
1010
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
1111
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
12-
<Version>5.2.0</Version>
12+
<Version>5.3.0</Version>
1313
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1414
<Authors>Dicky Suryadi</Authors>
1515
<Description>Simple, lightweight, yet powerful way to build reactive, real-time web apps. SignalR hub for ASP.NET Core.</Description>

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ DotNetify is a free, open source project that lets you create real-time, reactiv
88

99
## What's New
1010

11-
- **v5.x: [Scale-out, Vue 3.x support](https://github.com/dsuryd/dotNetify/releases)**.
12-
- v4.x: [Async view model](https://github.com/dsuryd/dotNetify/releases/tag/v4.1), [Typescript support](https://github.com/dsuryd/dotNetify/releases/tag/v4.0).
11+
- **Minimal API** - [release notes](https://github.com/dsuryd/dotNetify/releases/tag/v5.3).
12+
- Scale-out, Vue 3.x support - [release notes](https://github.com/dsuryd/dotNetify/releases/tag/v5.0).
13+
- Async view model - [release notes](https://github.com/dsuryd/dotNetify/releases/tag/v4.1).
1314

1415
**DotNetify.Postgres: [Real-time Web Updates From Your PostgreSQL Database](https://dsuryd.github.io/dotNetify/realtime-postgres/)**
1516

0 commit comments

Comments
 (0)