Skip to content

Commit

Permalink
Version bump to 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
acupofjose committed Jan 14, 2024
1 parent a668a62 commit 33ba94a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 3.5.0 - 2024-01-14

- Re: [#78](https://github.com/supabase-community/postgrest-csharp/issues/78), Generalize query filtering creation
in `Table` so that it matches new generic signatures.
- Move from `QueryFilter` parameters to a more generic `IPosgrestQueryFilter` to support constructing new QueryFilters
from a LINQ expression.
- Note: Lists of `QueryFilter`s will now need to be defined
as: `new List<IPostgrestQueryFilter> { new QueryFilter(), ... }`
- Adjust serialization of timestamps within a `QueryFilter` to support `DateTime` and `DateTimeOffset` using the
ISO-8601 (https://stackoverflow.com/a/115002)

## 3.4.1 - 2024-01-08

- Re: [#85](https://github.com/supabase-community/postgrest-csharp/issues/85) Fixes problem when using multiple .Order()
Expand Down
6 changes: 3 additions & 3 deletions Postgrest/Postgrest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
</Description>
<PackageIconUrl>https://avatars.githubusercontent.com/u/54469796?s=200&amp;v=4</PackageIconUrl>
<PackageTags>supabase,postgrest</PackageTags>
<ReleaseVersion>3.4.1</ReleaseVersion>
<PackageVersion>3.4.1</PackageVersion>
<ReleaseVersion>3.5.0</ReleaseVersion>
<PackageVersion>3.5.0</PackageVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand All @@ -34,7 +34,7 @@
</PropertyGroup>

<PropertyGroup Condition=" '$(Version)' == '' ">
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">3.4.1</VersionPrefix>
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">3.5.0</VersionPrefix>
<VersionSuffix Condition=" '$(VersionSuffix)' == '' "></VersionSuffix>
<Version Condition=" '$(VersionSuffix)' != '' ">$(VersionPrefix)-$(VersionSuffix)</Version>
<Version Condition=" '$(Version)' == '' ">$(VersionPrefix)</Version>
Expand Down

0 comments on commit 33ba94a

Please sign in to comment.