Skip to content

Commit f757a26

Browse files
committed
Update FlowSynx.PluginCore version
#2
1 parent 05df880 commit f757a26

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/FlowSynx.Plugins.Sqlite.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="FlowSynx.PluginCore" Version="1.3.0" />
15+
<PackageReference Include="FlowSynx.PluginCore" Version="1.3.2" />
1616
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.7" />
1717
</ItemGroup>
1818

src/SqlitePlugin.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class SqlitePlugin: IPlugin
1818
Name = "Sqlite",
1919
CompanyName = "FlowSynx",
2020
Description = Resources.PluginDescription,
21-
Version = new PluginVersion(1, 0, 0),
21+
Version = new Version(1, 1, 0),
2222
Category = PluginCategory.Data,
2323
Authors = new List<string> { "FlowSynx" },
2424
Copyright = "© FlowSynx. All rights reserved.",
@@ -27,6 +27,7 @@ public class SqlitePlugin: IPlugin
2727
RepositoryUrl = "https://github.com/flowsynx/plugin-sqlite",
2828
ProjectUrl = "https://flowsynx.io",
2929
Tags = new List<string>() { "flowSynx", "sql", "database", "data", "sqlite" },
30+
MinimumFlowSynxVersion = new Version(1, 1, 1)
3031
};
3132

3233
public PluginSpecifications? Specifications { get; set; }

0 commit comments

Comments
 (0)