Skip to content

Commit

Permalink
build: Increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
furesoft committed Aug 7, 2024
1 parent babba8d commit 2d41c76
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 19 deletions.
15 changes: 0 additions & 15 deletions Source/Samples/Sample.FuncLanguage/FuncPromptCallbacks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,6 @@ internal class FuncPromptCallbacks : ReplPromptCallbacks
}
*/

protected override async Task<(IReadOnlyList<OverloadItem>, int ArgumentIndex)> GetOverloadsAsync(string text, int caret, CancellationToken cancellationToken)
{
/*
if (text == "print(")
{
var item = new OverloadItem("print(value)", "prints any value to the console", "returns unit", [new OverloadItem.Parameter("src", "The value to print")]);
return ([item], 0);
}
*/

return (Array.Empty<OverloadItem>(), 0);
}


protected override Task<IReadOnlyList<CompletionItem>> GetCompletionItemsAsync(string text, int caret, TextSpan spanToBeReplaced, CancellationToken cancellationToken)
{
var typedWord = text.AsSpan(spanToBeReplaced.Start, spanToBeReplaced.Length).ToString();
Expand Down
2 changes: 1 addition & 1 deletion Source/Silverfly.Generator/Silverfly.Generator.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.0.66</Version>
<Version>1.0.67</Version>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand Down
2 changes: 1 addition & 1 deletion Source/Silverfly.Repl/Silverfly.Repl.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.0.66</Version>
<Version>1.0.67</Version>
<LangVersion>preview</LangVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Title>Silverfly.Repl</Title>
Expand Down
2 changes: 1 addition & 1 deletion Source/Silverfly.Testing/Silverfly.Testing.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.0.66</Version>
<Version>1.0.67</Version>
<LangVersion>preview</LangVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Title>Silverfly.Testing</Title>
Expand Down
2 changes: 1 addition & 1 deletion Source/Silverfly/Silverfly.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.0.66</Version>
<Version>1.0.67</Version>
<LangVersion>preview</LangVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Title>Silverfly</Title>
Expand Down

0 comments on commit 2d41c76

Please sign in to comment.