diff --git a/Build/azure-pipelines.yml b/Build/azure-pipelines.yml
index 2da1340..79369ca 100644
--- a/Build/azure-pipelines.yml
+++ b/Build/azure-pipelines.yml
@@ -1,10 +1,10 @@
variables:
solution: 'linq2db.LINQPad.sln'
build_configuration: 'Release'
- assemblyVersion: 5.2.2.0
- nugetVersion: 5.2.2
- nugetDevVersion: 5.2.3
- nugetPRVersion: 5.2.3
+ assemblyVersion: 5.4.1.0
+ nugetVersion: 5.4.1
+ nugetDevVersion: 5.4.2
+ nugetPRVersion: 5.4.2
artifact_lpx: 'lpx'
artifact_lpx6: 'lpx6'
artifact_nuget: 'nuget'
diff --git a/Build/linq2db.LINQPad.nuspec b/Build/linq2db.LINQPad.nuspec
index c9485bb..e1d8a6b 100644
--- a/Build/linq2db.LINQPad.nuspec
+++ b/Build/linq2db.LINQPad.nuspec
@@ -11,27 +11,27 @@
README.md
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
-
+
+
-
-
+
+
diff --git a/Directory.Packages.props b/Directory.Packages.props
index 14c245a..c3aa447 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -1,17 +1,17 @@
-
-
+
+
-
+
-
+
-
+
@@ -25,17 +25,18 @@
-
+
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
diff --git a/Source/Configuration/AppConfig.cs b/Source/Configuration/AppConfig.cs
index 0aa5df6..f0f8382 100644
--- a/Source/Configuration/AppConfig.cs
+++ b/Source/Configuration/AppConfig.cs
@@ -39,7 +39,7 @@ public static ILinqToDBSettings LoadJson(string configPath)
cs.ProviderName = cn.Value;
}
- return new AppConfig(connections.Values.ToArray());
+ return new AppConfig([.. connections.Values]);
}
#pragma warning disable CA1859 // change return type
@@ -67,7 +67,7 @@ public static ILinqToDBSettings LoadAppConfig(string configPath)
settings.Add(new ConnectionStringSettings(name, PasswordManager.ResolvePasswordManagerFields(connectionString)) { ProviderName = providerName });
}
- return new AppConfig(settings.ToArray());
+ return new AppConfig([.. settings]);
}
IEnumerable ILinqToDBSettings.DataProviders => [];
diff --git a/Source/Configuration/CustomSerializers/IReadOnlySetConverter.cs b/Source/Configuration/CustomSerializers/IReadOnlySetConverter.cs
index 0aa590f..df0b12f 100644
--- a/Source/Configuration/CustomSerializers/IReadOnlySetConverter.cs
+++ b/Source/Configuration/CustomSerializers/IReadOnlySetConverter.cs
@@ -69,7 +69,7 @@ public override JsonConverter CreateConverter(Type typeToConvert, JsonSerializer
var converterType = typeof(IReadOnlySetConverter<>).MakeGenericType(elementType);
return (JsonConverter)converterType
.GetMethod(nameof(IReadOnlySetConverter.GetInstance), BindingFlags.NonPublic | BindingFlags.Static)!
- .Invoke(null, new[] { options.GetConverter(elementType) })!;
+ .Invoke(null, [options.GetConverter(elementType)])!;
}
}
}
diff --git a/Source/linq2db.LINQPad.csproj b/Source/linq2db.LINQPad.csproj
index 4c1492a..d7e2134 100644
--- a/Source/linq2db.LINQPad.csproj
+++ b/Source/linq2db.LINQPad.csproj
@@ -6,7 +6,7 @@
linq2db
linq2db.LINQPad
$(Product)
- 5.2.2.0
+ 5.4.1.0
$(Version)
$(Version)
Copyright © 2016-2024 Linq To DB Team
@@ -81,7 +81,7 @@
-
+
diff --git a/release-notes.md b/release-notes.md
index 90dd7ea..341365a 100644
--- a/release-notes.md
+++ b/release-notes.md
@@ -1,3 +1,8 @@
+# Release 5.4.1
+
+Update dependencies ([#113](https://github.com/linq2db/linq2db.LINQPad/pull/113), [#114](https://github.com/linq2db/linq2db.LINQPad/issues/114))
+
+
# Release 5.2.2
Fix nuget dependencies