Skip to content

Commit 73f08f4

Browse files
committed
Version bump to 2.0.0
1 parent 33056ab commit 73f08f4

File tree

4 files changed

+68
-60
lines changed

4 files changed

+68
-60
lines changed

Diff for: CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 2.0.0 - 04-21-2024
4+
5+
- 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.
6+
- Re: [#135](https://github.com/supabase-community/supabase-csharp/issues/135) Update nuget package
7+
name `functions-csharp` to `Supabase.Functions`
8+
39
## 1.3.2 - 03-12-2024
410

511
- Re: [#5](https://github.com/supabase-community/functions-csharp/issues/5) Add support for specifying Http Timeout on a function call by adding `HttpTimeout` to `InvokeFunctionOptions`

Diff for: Functions/Functions.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
<PackageIconUrl>https://avatars.githubusercontent.com/u/54469796?s=200&amp;v=4</PackageIconUrl>
1717
<PackageProjectUrl>https://github.com/supabase-community/functions-csharp</PackageProjectUrl>
1818
<PackageTags>supabase, functions</PackageTags>
19-
<PackageVersion>1.3.2</PackageVersion>
20-
<ReleaseVersion>1.3.2</ReleaseVersion>
19+
<PackageVersion>2.0.0</PackageVersion>
20+
<ReleaseVersion>2.0.0</ReleaseVersion>
2121
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2222
<PackageIcon>icon.png</PackageIcon>
2323
<PackageReadmeFile>README.md</PackageReadmeFile>
@@ -31,7 +31,7 @@
3131
</PropertyGroup>
3232

3333
<PropertyGroup Condition=" '$(Version)' == '' ">
34-
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">1.3.2</VersionPrefix>
34+
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">2.0.0</VersionPrefix>
3535
<VersionSuffix Condition=" '$(VersionSuffix)' == '' "></VersionSuffix>
3636
<Version Condition=" '$(VersionSuffix)' != '' ">$(VersionPrefix)-$(VersionSuffix)</Version>
3737
<Version Condition=" '$(Version)' == '' ">$(VersionPrefix)</Version>

Diff for: README.md

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111

1212
---
1313

14+
## [Notice]: 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.
15+
1416
C# Client library to interact with Supabase Functions.
1517

1618
## Package made possible through the efforts of:
+57-57
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,57 @@
1-
2-
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 17
4-
VisualStudioVersion = 17.1.32319.34
5-
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{228693BB-A395-4123-93E8-5299FF875615}"
7-
ProjectSection(SolutionItems) = preProject
8-
CHANGELOG.md = CHANGELOG.md
9-
README.md = README.md
10-
EndProjectSection
11-
EndProject
12-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Functions", "Functions\Functions.csproj", "{889543F7-1F08-4032-A3D7-F7425ED03D9B}"
13-
EndProject
14-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FunctionsTests", "FunctionsTests\FunctionsTests.csproj", "{B427628C-D057-45E9-982F-552748894A94}"
15-
EndProject
16-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{D6201965-1A00-435E-965B-B0D66E74F33B}"
17-
EndProject
18-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{11445079-7FD7-4A84-972D-328B82AF1238}"
19-
ProjectSection(SolutionItems) = preProject
20-
.github\workflows\build-and-test.yml = .github\workflows\build-and-test.yml
21-
.github\workflows\build-documentation.yaml = .github\workflows\build-documentation.yaml
22-
.github\workflows\release.yml = .github\workflows\release.yml
23-
EndProjectSection
24-
EndProject
25-
Global
26-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
27-
Debug|Any CPU = Debug|Any CPU
28-
Release|Any CPU = Release|Any CPU
29-
EndGlobalSection
30-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
31-
{889543F7-1F08-4032-A3D7-F7425ED03D9B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
32-
{889543F7-1F08-4032-A3D7-F7425ED03D9B}.Debug|Any CPU.Build.0 = Debug|Any CPU
33-
{889543F7-1F08-4032-A3D7-F7425ED03D9B}.Release|Any CPU.ActiveCfg = Release|Any CPU
34-
{889543F7-1F08-4032-A3D7-F7425ED03D9B}.Release|Any CPU.Build.0 = Release|Any CPU
35-
{B427628C-D057-45E9-982F-552748894A94}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
36-
{B427628C-D057-45E9-982F-552748894A94}.Debug|Any CPU.Build.0 = Debug|Any CPU
37-
{B427628C-D057-45E9-982F-552748894A94}.Release|Any CPU.ActiveCfg = Release|Any CPU
38-
{B427628C-D057-45E9-982F-552748894A94}.Release|Any CPU.Build.0 = Release|Any CPU
39-
EndGlobalSection
40-
GlobalSection(SolutionProperties) = preSolution
41-
HideSolutionNode = FALSE
42-
EndGlobalSection
43-
GlobalSection(NestedProjects) = preSolution
44-
{D6201965-1A00-435E-965B-B0D66E74F33B} = {228693BB-A395-4123-93E8-5299FF875615}
45-
{11445079-7FD7-4A84-972D-328B82AF1238} = {D6201965-1A00-435E-965B-B0D66E74F33B}
46-
EndGlobalSection
47-
GlobalSection(ExtensibilityGlobals) = postSolution
48-
SolutionGuid = {3CB8EBAC-5D93-461A-8D2D-B83A69E49B4B}
49-
EndGlobalSection
50-
GlobalSection(MonoDevelopProperties) = preSolution
51-
Policies = $0
52-
$0.DotNetNamingPolicy = $1
53-
$1.DirectoryNamespaceAssociation = PrefixedHierarchical
54-
$0.VersionControlPolicy = $2
55-
version = 2.4.0
56-
EndGlobalSection
57-
EndGlobal
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.1.32319.34
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{228693BB-A395-4123-93E8-5299FF875615}"
7+
ProjectSection(SolutionItems) = preProject
8+
CHANGELOG.md = CHANGELOG.md
9+
README.md = README.md
10+
EndProjectSection
11+
EndProject
12+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Functions", "Functions\Functions.csproj", "{889543F7-1F08-4032-A3D7-F7425ED03D9B}"
13+
EndProject
14+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FunctionsTests", "FunctionsTests\FunctionsTests.csproj", "{B427628C-D057-45E9-982F-552748894A94}"
15+
EndProject
16+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{D6201965-1A00-435E-965B-B0D66E74F33B}"
17+
EndProject
18+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{11445079-7FD7-4A84-972D-328B82AF1238}"
19+
ProjectSection(SolutionItems) = preProject
20+
.github\workflows\build-and-test.yml = .github\workflows\build-and-test.yml
21+
.github\workflows\build-documentation.yaml = .github\workflows\build-documentation.yaml
22+
.github\workflows\release.yml = .github\workflows\release.yml
23+
EndProjectSection
24+
EndProject
25+
Global
26+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
27+
Debug|Any CPU = Debug|Any CPU
28+
Release|Any CPU = Release|Any CPU
29+
EndGlobalSection
30+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
31+
{889543F7-1F08-4032-A3D7-F7425ED03D9B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
32+
{889543F7-1F08-4032-A3D7-F7425ED03D9B}.Debug|Any CPU.Build.0 = Debug|Any CPU
33+
{889543F7-1F08-4032-A3D7-F7425ED03D9B}.Release|Any CPU.ActiveCfg = Release|Any CPU
34+
{889543F7-1F08-4032-A3D7-F7425ED03D9B}.Release|Any CPU.Build.0 = Release|Any CPU
35+
{B427628C-D057-45E9-982F-552748894A94}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
36+
{B427628C-D057-45E9-982F-552748894A94}.Debug|Any CPU.Build.0 = Debug|Any CPU
37+
{B427628C-D057-45E9-982F-552748894A94}.Release|Any CPU.ActiveCfg = Release|Any CPU
38+
{B427628C-D057-45E9-982F-552748894A94}.Release|Any CPU.Build.0 = Release|Any CPU
39+
EndGlobalSection
40+
GlobalSection(SolutionProperties) = preSolution
41+
HideSolutionNode = FALSE
42+
EndGlobalSection
43+
GlobalSection(NestedProjects) = preSolution
44+
{D6201965-1A00-435E-965B-B0D66E74F33B} = {228693BB-A395-4123-93E8-5299FF875615}
45+
{11445079-7FD7-4A84-972D-328B82AF1238} = {D6201965-1A00-435E-965B-B0D66E74F33B}
46+
EndGlobalSection
47+
GlobalSection(ExtensibilityGlobals) = postSolution
48+
SolutionGuid = {3CB8EBAC-5D93-461A-8D2D-B83A69E49B4B}
49+
EndGlobalSection
50+
GlobalSection(MonoDevelopProperties) = preSolution
51+
Policies = $0
52+
$0.DotNetNamingPolicy = $1
53+
$1.DirectoryNamespaceAssociation = PrefixedHierarchical
54+
$0.VersionControlPolicy = $2
55+
version = 2.4.0
56+
EndGlobalSection
57+
EndGlobal

0 commit comments

Comments
 (0)