Skip to content

Commit

Permalink
v1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Groxan committed Dec 11, 2022
1 parent a44e65a commit 9e28cb6
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Tzkt.Api.Tests/Tzkt.Api.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<LangVersion>10</LangVersion>
<AssemblyVersion>1.10.3</AssemblyVersion>
<AssemblyVersion>1.11.0</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Tzkt.Api/Swagger/Description.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ TzKT API is available for the following Tezos networks with the following base U

- Mainnet: `https://api.tzkt.io/` or `https://api.mainnet.tzkt.io/` ([view docs](https://api.tzkt.io))
- Ghostnet: `https://api.ghostnet.tzkt.io/` ([view docs](https://api.ghostnet.tzkt.io))
- Jakartanet: `https://api.jakartanet.tzkt.io/` ([view docs](https://api.jakartanet.tzkt.io))
- Kathmandunet: `https://api.kathmandunet.tzkt.io/` ([view docs](https://api.kathmandunet.tzkt.io))
- Limanet: `https://api.limanet.tzkt.io/` ([view docs](https://api.limanet.tzkt.io))

We also provide a staging environment for testing newest features and pre-updating client applications before deploying to production:

Expand Down
2 changes: 1 addition & 1 deletion Tzkt.Api/Swagger/Swagger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Tzkt.Api.Swagger
{
public static class Swagger
{
const string Version = "v1.10.3";
const string Version = "v1.11.0";
const string Path = "/v1/swagger.json";

public static void AddOpenApiDocument(this IServiceCollection services)
Expand Down
2 changes: 1 addition & 1 deletion Tzkt.Api/Tzkt.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<AssemblyVersion>1.10.3</AssemblyVersion>
<AssemblyVersion>1.11.0</AssemblyVersion>
</PropertyGroup>

<PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions Tzkt.Data/Tzkt.Data.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<AssemblyVersion>1.10.3</AssemblyVersion>
<AssemblyVersion>1.11.0</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Netezos" Version="2.7.0" />
<PackageReference Include="Netezos" Version="2.7.2" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.0" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion Tzkt.Sync.Tests/Tzkt.Sync.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyVersion>1.10.3</AssemblyVersion>
<AssemblyVersion>1.11.0</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion Tzkt.Sync/Services/Domains/DomainsService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ LIMIT @limit
Owner = row.Owner,
Expiration = row.Expiration is string s
? DateTimeOffset.Parse(s).UtcDateTime
: DateTimeOffset.MaxValue.UtcDateTime,
: DateTimeOffset.MaxValue.UtcDateTime.Date,
Data = row.Data == "{}" ? null : ParseDomainData((string)row.Data),
FirstLevel = row.FirstLevel,
LastLevel = row.LastLevel
Expand Down Expand Up @@ -218,6 +218,7 @@ AND expiry."LastLevel" < state."Level"
INNER JOIN "Domains" AS domain
ON domain."Id" = id
WHERE domain."Expiration" != expiration
FOR UPDATE
) updates
WHERE "Id" = updates.id
""", new { ptr = RecordsBigMap, ptr2 = ExpiryBigMap, level = Level });
Expand Down
4 changes: 2 additions & 2 deletions Tzkt.Sync/Tzkt.Sync.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<AssemblyVersion>1.10.3</AssemblyVersion>
<AssemblyVersion>1.11.0</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
Expand All @@ -13,7 +13,7 @@
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.0" />
<PackageReference Include="Netezos" Version="2.7.0" />
<PackageReference Include="Netezos" Version="2.7.2" />
<PackageReference Include="Newtonsoft.Json.Bson" Version="1.0.2" />
<PackageReference Include="SauceControl.Blake2Fast" Version="2.0.0" />
</ItemGroup>
Expand Down

0 comments on commit 9e28cb6

Please sign in to comment.