Skip to content

Commit 28898a0

Browse files
chore(master): release 2.1.0 (#9)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 6f2d78d commit 28898a0

File tree

3 files changed

+62
-55
lines changed

3 files changed

+62
-55
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "2.0.0"
2+
".": "2.1.0"
33
}

CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1-
# Changelog
2-
1+
# Changelog
2+
3+
## [2.1.0](https://github.com/supabase-community/functions-csharp/compare/v2.0.0...v2.1.0) (2025-05-13)
4+
5+
6+
### Miscellaneous Chores
7+
8+
* release 2.1.0 ([6f2d78d](https://github.com/supabase-community/functions-csharp/commit/6f2d78df68e91d3457fa54e3ff28f179edb95ab1))
9+
310
## 2.0.0 - 04-21-2024
411

512
- v2.0.0 renames this package from `functions-csharp` to `Supabase.Functions`. The depreciation notice has been set in NuGet. The API remains the same.
@@ -39,4 +46,4 @@
3946

4047
## 1.0.0 - 2022-04-14
4148

42-
- Initial Release
49+
- Initial Release

Functions/Functions.csproj

Lines changed: 51 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,51 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<TargetFramework>netstandard2.0</TargetFramework>
4-
<PackOnBuild>true</PackOnBuild>
5-
<PackageId>Supabase.Functions</PackageId>
6-
<RootNamespace>Supabase.Functions</RootNamespace>
7-
<AssemblyName>Supabase.Functions</AssemblyName>
8-
<Authors>Joseph Schultz &lt;joseph@acupofjose.com&gt;</Authors>
9-
<Copyright>MIT</Copyright>
10-
<NeutralLanguage>en</NeutralLanguage>
11-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
12-
<Owners>Joseph Schultz &lt;joseph@acupofjose.com&gt;</Owners>
13-
<Summary>A C# client for Supabase Functions</Summary>
14-
<Title>Function</Title>
15-
<Description>A C# client for Supabase Functions</Description>
16-
<PackageIconUrl>https://avatars.githubusercontent.com/u/54469796?s=200&amp;v=4</PackageIconUrl>
17-
<PackageProjectUrl>https://github.com/supabase-community/functions-csharp</PackageProjectUrl>
18-
<PackageTags>supabase, functions</PackageTags>
19-
<!-- x-release-please-start-version -->
20-
<PackageVersion>2.0.0</PackageVersion>
21-
<ReleaseVersion>2.0.0</ReleaseVersion>
22-
<!-- x-release-please-end -->
23-
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
24-
<PackageIcon>icon.png</PackageIcon>
25-
<PackageReadmeFile>README.md</PackageReadmeFile>
26-
<RepositoryUrl>https://github.com/supabase-community/functions-csharp</RepositoryUrl>
27-
<IncludeSymbols>true</IncludeSymbols>
28-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
29-
<GenerateDocumentationFile>true</GenerateDocumentationFile>
30-
<Nullable>enable</Nullable>
31-
<LangVersion>8.0</LangVersion>
32-
<WarningsAsErrors>CS8600;CS8602;CS8603</WarningsAsErrors>
33-
</PropertyGroup>
34-
35-
<PropertyGroup Condition=" '$(Version)' == '' ">
36-
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">2.0.0</VersionPrefix> <!-- x-release-please-version -->
37-
<VersionSuffix Condition=" '$(VersionSuffix)' == '' "></VersionSuffix>
38-
<Version Condition=" '$(VersionSuffix)' != '' ">$(VersionPrefix)-$(VersionSuffix)</Version>
39-
<Version Condition=" '$(Version)' == '' ">$(VersionPrefix)</Version>
40-
</PropertyGroup>
41-
42-
<ItemGroup>
43-
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
44-
<PackageReference Include="Supabase.Core" Version="1.0.0" />
45-
</ItemGroup>
46-
47-
<ItemGroup>
48-
<None Include="..\.github\icon.png" Pack="true" Link="icon.png" PackagePath="\" />
49-
<None Include="..\README.md" Pack="true" Link="README.md" PackagePath="\" />
50-
</ItemGroup>
51-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<TargetFramework>netstandard2.0</TargetFramework>
4+
<PackOnBuild>true</PackOnBuild>
5+
<PackageId>Supabase.Functions</PackageId>
6+
<RootNamespace>Supabase.Functions</RootNamespace>
7+
<AssemblyName>Supabase.Functions</AssemblyName>
8+
<Authors>Joseph Schultz &lt;joseph@acupofjose.com&gt;</Authors>
9+
<Copyright>MIT</Copyright>
10+
<NeutralLanguage>en</NeutralLanguage>
11+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
12+
<Owners>Joseph Schultz &lt;joseph@acupofjose.com&gt;</Owners>
13+
<Summary>A C# client for Supabase Functions</Summary>
14+
<Title>Function</Title>
15+
<Description>A C# client for Supabase Functions</Description>
16+
<PackageIconUrl>https://avatars.githubusercontent.com/u/54469796?s=200&amp;v=4</PackageIconUrl>
17+
<PackageProjectUrl>https://github.com/supabase-community/functions-csharp</PackageProjectUrl>
18+
<PackageTags>supabase, functions</PackageTags>
19+
<!-- x-release-please-start-version -->
20+
<PackageVersion>2.1.0</PackageVersion>
21+
<ReleaseVersion>2.1.0</ReleaseVersion>
22+
<!-- x-release-please-end -->
23+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
24+
<PackageIcon>icon.png</PackageIcon>
25+
<PackageReadmeFile>README.md</PackageReadmeFile>
26+
<RepositoryUrl>https://github.com/supabase-community/functions-csharp</RepositoryUrl>
27+
<IncludeSymbols>true</IncludeSymbols>
28+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
29+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
30+
<Nullable>enable</Nullable>
31+
<LangVersion>8.0</LangVersion>
32+
<WarningsAsErrors>CS8600;CS8602;CS8603</WarningsAsErrors>
33+
</PropertyGroup>
34+
35+
<PropertyGroup Condition=" '$(Version)' == '' ">
36+
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">2.1.0</VersionPrefix> <!-- x-release-please-version -->
37+
<VersionSuffix Condition=" '$(VersionSuffix)' == '' "></VersionSuffix>
38+
<Version Condition=" '$(VersionSuffix)' != '' ">$(VersionPrefix)-$(VersionSuffix)</Version>
39+
<Version Condition=" '$(Version)' == '' ">$(VersionPrefix)</Version>
40+
</PropertyGroup>
41+
42+
<ItemGroup>
43+
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
44+
<PackageReference Include="Supabase.Core" Version="1.0.0" />
45+
</ItemGroup>
46+
47+
<ItemGroup>
48+
<None Include="..\.github\icon.png" Pack="true" Link="icon.png" PackagePath="\" />
49+
<None Include="..\README.md" Pack="true" Link="README.md" PackagePath="\" />
50+
</ItemGroup>
51+
</Project>

0 commit comments

Comments
 (0)