Bump, remove obsolete functionalities

This commit is contained in:
Łukasz Domeradzki
2025-01-01 15:05:17 +01:00
parent 7bf2dab4d0
commit a97d761f46
2 changed files with 1 additions and 6 deletions

View File

@@ -256,11 +256,6 @@ public sealed class Bot : IAsyncDisposable, IDisposable {
[PublicAPI] [PublicAPI]
public string? Nickname { get; private set; } public string? Nickname { get; private set; }
[JsonIgnore]
[Obsolete($"Use {nameof(OwnedPackages)} instead, this property will be removed in the future version")]
[PublicAPI]
public FrozenDictionary<uint, (EPaymentMethod PaymentMethod, DateTime TimeCreated)> OwnedPackageIDs => OwnedPackages.Values.ToFrozenDictionary(static entry => entry.PackageID, static entry => (entry.PaymentMethod, entry.TimeCreated));
[JsonIgnore] [JsonIgnore]
[PublicAPI] [PublicAPI]
public FrozenDictionary<uint, LicenseData> OwnedPackages { get; private set; } = FrozenDictionary<uint, LicenseData>.Empty; public FrozenDictionary<uint, LicenseData> OwnedPackages { get; private set; } = FrozenDictionary<uint, LicenseData>.Empty;

View File

@@ -1,6 +1,6 @@
<Project> <Project>
<PropertyGroup> <PropertyGroup>
<Version>6.1.1.4</Version> <Version>6.1.2.0</Version>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>