Skip to content

Commit

Permalink
Prepare for the release of another RC.
Browse files Browse the repository at this point in the history
Add support for SourceLink, to be completed in the next release when a Paket bug gets fixed.
And do not manually fill the repository URL of the packages.
!BENCH!
  • Loading branch information
teo-tsirpanis committed Aug 10, 2019
1 parent 41e301c commit 8db3009
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
3 changes: 2 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#### 5.0.0-rc.7
#### 5.0.0-rc.7 - 10-08-2019
* Speed-up the tokenizer by using an array that handles ASCII characters.
* Remove `Grammar.StartSymbol`, as it was unreliable, and useless to Farkle.
* Remove the `OutputDirectorySuffix` metadata introduced in 5.0.0-rc.5. Generated source files by Farkle.Tools.MSBuild are _always_ added in the same directory as the project.

#### 5.0.0-rc.6 - 22-07-2019
* Fix a breaking error in Farkle.Tools.MSBuild.
Expand Down
8 changes: 8 additions & 0 deletions src/Farkle/Farkle.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
<PackageId>Farkle</PackageId>
<Product>Farkle</Product>
<Description>Farkle is a parser library inspired by, and based on the GOLD Parser.</Description>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Disabled, until Paket PR #3636 gets merged. -->
<!-- <IncludeSymbols>true</IncludeSymbols> -->
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyAttributes.fs" />
Expand All @@ -32,5 +37,8 @@
<Compile Include="RuntimeFarkle.fs" />
<Compile Include="CSharp/CSharpBindings.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19351-01" PrivateAssets="All" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>
1 change: 0 additions & 1 deletion src/Farkle/Parser/Tokenizer.fs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ module Tokenizer =
| ValueNone, ValueNone -> input.FirstCharacter |> Error |> Some
impl (getCurrentIndex input) states.InitialState ValueNone


/// Returns the next token from the current position of a `CharStream`.
/// A delegate to transform the resulting terminal is also given, as well
/// as one that logs events.
Expand Down
2 changes: 0 additions & 2 deletions src/NuGet.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://teo-tsirpanis.github.io/Farkle/</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/teo-tsirpanis/Farkle/master/docsrc/files/img/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/teo-tsirpanis/Farkle/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>farkle;parser;lalr;gold-parser</PackageTags>
<PackageReleaseNotes>You can see information about the latest releases on https://github.com/teo-tsirpanis/Farkle/releases</PackageReleaseNotes>
</PropertyGroup>
Expand Down

0 comments on commit 8db3009

Please sign in to comment.