Skip to content

Commit

Permalink
Release 12.7
Browse files Browse the repository at this point in the history
  • Loading branch information
kaby76 committed Nov 29, 2023
1 parent fe899e0 commit b37180d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Antlr4BuildTasks/Antlr4BuildTasks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<EnableDefaultNoneItems>False</EnableDefaultNoneItems>
<RootNamespace>Antlr4.Build.Tasks</RootNamespace>
<AssemblyName>Antlr4BuildTasks</AssemblyName>
<AssemblyVersion>12.6</AssemblyVersion>
<FileVersion>12.6</FileVersion>
<Version>12.6</Version>
<AssemblyVersion>12.7</AssemblyVersion>
<FileVersion>12.7</FileVersion>
<Version>12.7</Version>
<Description>Derivative of Harwell's Antrl4cs: contains "ITask" wrapper for Msbuild, schemas for setting Antlr4 file properties, and a separately installed official Antlr4 java tool at antlr.org downloads.</Description>
<Copyright />
<Company>Domemtech</Company>
Expand All @@ -23,7 +23,7 @@
<PackageTags>antlr antlr4 parsing</PackageTags>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Authors>Ken Domino</Authors>
<PackageReleaseNotes>12.6</PackageReleaseNotes>
<PackageReleaseNotes>12.7</PackageReleaseNotes>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
9 changes: 6 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ to your project. csproj file as shown below, otherwise you can use the "NuGet Pa
````xml
<ItemGroup>
<PackageReference Include="Antlr4.Runtime.Standard" Version="4.13.1" />
<PackageReference Include="Antlr4BuildTasks" Version="12.6" PrivateAssets="all" />
<PackageReference Include="Antlr4BuildTasks" Version="12.7" PrivateAssets="all" />
</ItemGroup>
````

Expand Down Expand Up @@ -167,7 +167,7 @@ to

````xml
<ItemGroup>
<PackageReference Include="Antlr4BuildTasks" Version="12.6" PrivateAssets="all" />
<PackageReference Include="Antlr4BuildTasks" Version="12.7" PrivateAssets="all" />
<PackageReference Include="Antlr4.Runtime.Standard" Version="4.13.1" />
</ItemGroup>
````
Expand All @@ -187,7 +187,10 @@ the .csproj file as outlined above.
If you are looking for a set of templates to create a console application that uses Antlr4,
then see [Antlr4Templates](https://github.com/kaby76/Antlr4Templates).

### Latest release, v12.6
### Latest release, v12.7

### Release 12.7 (29 Nov '23)
* Fix for Eclipse Temurin OpenJDK.

### Release 12.6 (27 Nov '23)
* Fix for https://github.com/kaby76/Antlr4BuildTasks/issues/75. WebClient, obsolete, has been replaced.
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ test-java:
test-no-java:
bash test-no-java.sh
publish:
dotnet nuget push Antlr4BuildTasks/bin/Release/Antlr4BuildTasks.12.6.0.nupkg --api-key ${trashkey} --source https://api.nuget.org/v3/index.json
dotnet nuget push Antlr4BuildTasks/bin/Release/Antlr4BuildTasks.12.7.0.nupkg --api-key ${trashkey} --source https://api.nuget.org/v3/index.json

0 comments on commit b37180d

Please sign in to comment.