Skip to content

Commit bbdb575

Browse files
committed
Update FlowSynx.PluginCore version
#2
1 parent 2443f13 commit bbdb575

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# FlowSynx PostgreSQL Plugin
22

3-
The PostgreSQL Plugin is a pre-packaged, plug-and-play integration component for the FlowSynx engine. It enables executing PostgreSQL queries with configurable parameters such as connection strings, SQL templates, and runtime parameters. Designed for FlowSynx’s no-code/low-code automation workflows, this plugin simplifies database integration, data retrieval, and transformation tasks.
3+
The PostgreSQL Plugin is a pre-packaged, plug-and-play integration component for the FlowSynx engine. It enables executing PostgreSQL queries with configurable parameters such as connection strings, SQL templates, and runtime parameters. Designed for FlowSynx’s no-code/low-code automation workflows, this plugin simplifies database integration, data retrieval, and transformation tasks.
44

55
This plugin is automatically installed by the FlowSynx engine when selected within the platform. It is not intended for manual installation or standalone developer use outside the FlowSynx environment.
66

@@ -75,4 +75,4 @@ The plugin accepts the following parameters:
7575

7676
## License
7777

78-
© FlowSynx. All rights reserved.
78+
© FlowSynx. All rights reserved.

src/FlowSynx.Plugins.PostgreSql.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="Npgsql" Version="9.0.3" />
1717
</ItemGroup>
1818

src/PostgreSqlPlugin.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class PostgreSqlPlugin: IPlugin
1919
Name = "PostgreSql",
2020
CompanyName = "FlowSynx",
2121
Description = Resources.PluginDescription,
22-
Version = new PluginVersion(1, 0, 0),
22+
Version = new Version(1, 1, 0),
2323
Category = PluginCategory.Data,
2424
Authors = new List<string> { "FlowSynx" },
2525
Copyright = "© FlowSynx. All rights reserved.",
@@ -28,6 +28,7 @@ public class PostgreSqlPlugin: IPlugin
2828
RepositoryUrl = "https://github.com/flowsynx/plugin-postgresql",
2929
ProjectUrl = "https://flowsynx.io",
3030
Tags = new List<string>() { "flowSynx", "sql", "database", "data", "postgresql" },
31+
MinimumFlowSynxVersion = new Version(1, 1, 1)
3132
};
3233

3334
public PluginSpecifications? Specifications { get; set; }

0 commit comments

Comments
 (0)