Skip to content

Commit bf9405f

Browse files
committed
Version bump to 1.2.0
1 parent 14997a4 commit bf9405f

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.2.0 - 2022-11-10
4+
5+
- [MINOR] `Client` now initializes with a `baseUrl` and method calls arguments are only the `functionName`.
6+
- Included `GetHeaders` property.
7+
38
## 1.1.0 - 2022-11-04
49

510
- `Client` is no longer a Singleton class, it should be initialized using a default constructor.

Functions/Functions.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
<PackageLicenseUrl>https://github.com/supabase-community/functions-csharp/blob/master/LICENSE</PackageLicenseUrl>
1717
<PackageProjectUrl>https://github.com/supabase-community/functions-csharp</PackageProjectUrl>
1818
<PackageTags>supabase, functions</PackageTags>
19-
<PackageVersion>1.1.0</PackageVersion>
20-
<ReleaseVersion>1.1.0</ReleaseVersion>
19+
<PackageVersion>1.2.0</PackageVersion>
20+
<ReleaseVersion>1.2.0</ReleaseVersion>
2121
</PropertyGroup>
2222
<PropertyGroup>
2323
<Nullable>enable</Nullable>
2424
<LangVersion>8.0</LangVersion>
2525
<WarningsAsErrors>CS8600;CS8602;CS8603</WarningsAsErrors>
2626
</PropertyGroup>
2727
<PropertyGroup Condition=" '$(Version)' == '' ">
28-
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">1.0.1</VersionPrefix>
28+
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">1.2.0</VersionPrefix>
2929
<VersionSuffix Condition=" '$(VersionSuffix)' == '' ">
3030
</VersionSuffix>
3131
<Version Condition=" '$(VersionSuffix)' != '' ">$(VersionPrefix)-$(VersionSuffix)</Version>

FunctionsTests/FunctionsTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netcoreapp3.1</TargetFramework>
55

66
<IsPackable>false</IsPackable>
7-
<ReleaseVersion>1.0.1</ReleaseVersion>
7+
<ReleaseVersion>1.2.0</ReleaseVersion>
88
</PropertyGroup>
99

1010
<ItemGroup>

0 commit comments

Comments
 (0)