Skip to content

Commit 992b29a

Browse files
committed
(#14, #18) Compiler: release notes, connect with the task
1 parent 86a2a3f commit 992b29a

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1010
- The `pabcnetcclear.exe` binary is now used for compilation, since it's more suited for command-line invocation.
1111
- Multiple `<MainCompile>` items are no longer supported in one project.
1212
- The default output assembly path is now in line with MSBuild SDK standards (`bin/<Configuration>/<TargetFramework>/<ProjectName>.exe`).
13+
- A version 3.8.3.3178-preview.1 of the compiler is now used by default. It was published from a fork of the official repository, with better support for NuGet.
1314

1415
### Added
1516
- New `DebugMode` property is supported and set by default for the `Debug` configuration. Before that, the debug mode was always enabled.

PascalABC.NET.Compiler/PascalABC.NET.Compiler.nuspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<license type="file">doc\License_en.txt</license>
99
<projectUrl>http://pascalabc.net/</projectUrl>
1010
<description>Binary files of the official compiler for the PascalABC.NET programming language.</description>
11+
<releaseNotes>The same as the official 3.8.3.3177, but with PR #2720 (https://github.com/pascalabcnet/pascalabcnet/pull/2720) incorporated.</releaseNotes> <!-- TODO[#18]: Remove this line -->
1112
</metadata>
1213

1314
<files>

PascalABC.NET.Compiler/PascalABC.NET.Compiler.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<PropertyGroup Label="StaticProperties">
1616
<TargetFramework>net6.0</TargetFramework>
1717
<NuspecFile>$(MSBuildThisFileDirectory)PascalABC.NET.Compiler.nuspec</NuspecFile>
18-
<NuspecProperties Condition=" $(VersionSuffix) == '' ">version=$(VersionPrefix)-preview.1</NuspecProperties> <!-- TODO[#xxx]: Remove the suffix -->
18+
<NuspecProperties Condition=" $(VersionSuffix) == '' ">version=$(VersionPrefix)-preview.1</NuspecProperties> <!-- TODO[#18]: Remove the suffix -->
1919
<NuspecProperties Condition=" $(NuspecProperties) == '' ">version=$(VersionPrefix)-$(VersionSuffix)</NuspecProperties>
2020
<NoDefaultExcludes>true</NoDefaultExcludes>
2121
</PropertyGroup>

PascalABC.NET.SDK/Sdk/Sdk.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<PropertyGroup Label="CompilerVersioning">
1111
<_PascalABCNETCompilerPackageVersionPrefix>3.8.3.3178</_PascalABCNETCompilerPackageVersionPrefix>
12-
<_PascalABCNETCompilerPackageVersionSuffix Condition=" $(_PascalABCNETCompilerPackageVersionSuffix) == '' ">preview.1</_PascalABCNETCompilerPackageVersionSuffix> <!-- TODO[#xxx]: Remove this line -->
12+
<_PascalABCNETCompilerPackageVersionSuffix Condition=" $(_PascalABCNETCompilerPackageVersionSuffix) == '' ">preview.1</_PascalABCNETCompilerPackageVersionSuffix> <!-- TODO[#18]: Remove this line -->
1313
</PropertyGroup>
1414

1515
<PropertyGroup Label="Static">

0 commit comments

Comments
 (0)