Skip to content

Commit 78656fc

Browse files
Prepare 6.2 release
1 parent b6fe189 commit 78656fc

4 files changed

Lines changed: 18 additions & 13 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
env:
1717
Solution: '**/ICSharpCode.AvalonEdit.sln'
1818
BuildPlatform: 'Any CPU'
19-
BuildVersion: '6.1.4'
19+
BuildVersion: '6.2.0'
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v3
2222
- name: Update project version
2323
uses: roryprimrose/set-vs-sdk-project-version@v1
2424
with:
@@ -28,12 +28,12 @@ jobs:
2828
fileVersion: ${{ env.BuildVersion }}.${{ github.run_number }}
2929

3030
- name: Setup .NET 3.1 (for unit tests only)
31-
uses: actions/setup-dotnet@v1
31+
uses: actions/setup-dotnet@v3
3232
with:
3333
dotnet-version: 3.1.x
3434

3535
- name: Setup .NET
36-
uses: actions/setup-dotnet@v1
36+
uses: actions/setup-dotnet@v3
3737
with:
3838
dotnet-version: 6.0.x
3939

@@ -71,15 +71,15 @@ jobs:
7171

7272
- name: Upload NuGet
7373
if: matrix.configuration == 'release'
74-
uses: actions/upload-artifact@v2
74+
uses: actions/upload-artifact@v3
7575
with:
7676
name: AvalonEdit NuGet Package (${{ matrix.configuration }})
7777
path: ICSharpCode.AvalonEdit/bin/Release/AvalonEdit*.nupkg
7878
if-no-files-found: error
7979

8080
- name: Upload Snupkg Artifact
8181
if: matrix.configuration == 'release'
82-
uses: actions/upload-artifact@v2
82+
uses: actions/upload-artifact@v3
8383
with:
8484
name: AvalonEdit Snupkg (${{ matrix.configuration }})
8585
path: ICSharpCode.AvalonEdit/bin/Release/AvalonEdit*.snupkg

ChangeLog.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
Note: this changelog only lists major changes and fixes for major bugs. For a complete list of changes, see the git log.
22

3-
tbd: AvalonEdit X
3+
tbd: AvalonEdit XML
4+
* tbd
5+
6+
2022/12/10: AvalonEdit 6.2.0
47
* Change framework targets to .NET Framework 4.6.2, .NET Core 3.1 and .NET 6.0 (.NET Framework 4.0, 4.5 and .NET 5.0 removed)
8+
* Minor bug fixes
59

610
2021/12/28: AvalonEdit 6.1.3
711
* TFM changes: net6.0-windows (LTS) added

ICSharpCode.AvalonEdit/ICSharpCode.AvalonEdit.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<Company>ic#code</Company>
1111
<Copyright>2000-2022 AlphaSierraPapa for the SharpDevelop Team</Copyright>
1212
<Description>AvalonEdit is the WPF-based text editor used in SharpDevelop. There are five builds of AvalonEdit included in this package: .NET Framework 4.5 and 4.0, .NET Core 3.1, .NET 5.0 for Windows, .NET 6.0 for Windows.</Description>
13-
<Version>6.1</Version>
14-
<AssemblyVersion>6.1.0.0</AssemblyVersion>
15-
<FileVersion>6.1.0.0</FileVersion>
13+
<Version>6.2</Version>
14+
<AssemblyVersion>6.2.0.0</AssemblyVersion>
15+
<FileVersion>6.2.0.0</FileVersion>
1616
<GenerateDocumentationFile>True</GenerateDocumentationFile>
1717
</PropertyGroup>
1818

global.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"sdk": {
3-
"version": "6.0.100",
4-
"rollForward": "latestFeature"
3+
"version": "6.0.200",
4+
"rollForward": "major",
5+
"allowPrerelease": true
56
}
6-
}
7+
}

0 commit comments

Comments
 (0)