diff --git a/Directory.Build.props b/Directory.Build.props
index 9266d1d..4d8bdc7 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -5,15 +5,15 @@
all
Rocket Mortgage
- Copyright 2024 (c) Rocket Mortgage. All rights reserved.
+ Copyright 2025 (c) Rocket Mortgage. All rights reserved.
latest
enable
- net6.0;net48;net8.0
+ net48;net8.0
NU1603,NU1701
true
-
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive
diff --git a/Examples/Example.Secrets.Aws.AspNetCore/Example.Secrets.Aws.AspNetCore.csproj b/Examples/Example.Secrets.Aws.AspNetCore/Example.Secrets.Aws.AspNetCore.csproj
index f41f4a1..5c3bcd6 100644
--- a/Examples/Example.Secrets.Aws.AspNetCore/Example.Secrets.Aws.AspNetCore.csproj
+++ b/Examples/Example.Secrets.Aws.AspNetCore/Example.Secrets.Aws.AspNetCore.csproj
@@ -2,7 +2,7 @@
enable
CA1812
- net6.0
+ net8.0
diff --git a/Examples/Example.Secrets.Aws.AspNetCore/Program.cs b/Examples/Example.Secrets.Aws.AspNetCore/Program.cs
index 308fc84..2b05018 100644
--- a/Examples/Example.Secrets.Aws.AspNetCore/Program.cs
+++ b/Examples/Example.Secrets.Aws.AspNetCore/Program.cs
@@ -33,10 +33,12 @@
application.UseHttpsRedirection();
application.UseRouting();
application.UseAuthorization();
+#pragma warning disable ASP0014 // Suggest using top level route registrations
application.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
});
+#pragma warning restore ASP0014 // Suggest using top level route registrations
application.Run();
diff --git a/Examples/Example.Secrets.Custom/Example.Secrets.Custom.csproj b/Examples/Example.Secrets.Custom/Example.Secrets.Custom.csproj
index e11a104..468e269 100644
--- a/Examples/Example.Secrets.Custom/Example.Secrets.Custom.csproj
+++ b/Examples/Example.Secrets.Custom/Example.Secrets.Custom.csproj
@@ -3,7 +3,7 @@
enable
CA1812
Exe
- net6.0
+ net8.0
diff --git a/README.md b/README.md
index c504acf..8dafcef 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,8 @@
*A configuration provider for Microsoft.Extensions.Configuration backed by runtime secrets.*
+> Note: The 5.0.0 release of RockLib.Secrets and the 4.0.0 release of RockLib.Secrets.Aws are the final versions with upgrades and changes. Bug fixes will continue to be released as needed.
+
### RockLib.Secrets
### RockLib.Secrets.Aws
diff --git a/RockLib.Secrets.Aws/CHANGELOG.md b/RockLib.Secrets.Aws/CHANGELOG.md
index 3e9a6f4..82f8e20 100644
--- a/RockLib.Secrets.Aws/CHANGELOG.md
+++ b/RockLib.Secrets.Aws/CHANGELOG.md
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## 4.0.0 - 2025-01-24
+
+#### Changed
+- Removed .NET 6.0 as a target framework.
+
## 3.0.2 - 2024-07-22
#### Changed
diff --git a/RockLib.Secrets.Aws/RockLib.Secrets.Aws.csproj b/RockLib.Secrets.Aws/RockLib.Secrets.Aws.csproj
index 84b7b86..695e4ee 100644
--- a/RockLib.Secrets.Aws/RockLib.Secrets.Aws.csproj
+++ b/RockLib.Secrets.Aws/RockLib.Secrets.Aws.csproj
@@ -11,9 +11,9 @@
A changelog is available at https://github.com/RockLib/RockLib.Secrets/blob/main/RockLib.Secrets.Aws/CHANGELOG.md.
false
rocklib secrets aws
- 3.0.2
+ 4.0.0
True
- 3.0.2
+ 4.0.0
bin\$(Configuration)\$(TargetFramework)\$(PackageId).xml
@@ -27,8 +27,9 @@
-
+
+
diff --git a/RockLib.Secrets/CHANGELOG.md b/RockLib.Secrets/CHANGELOG.md
index bdf0baa..90e19e7 100644
--- a/RockLib.Secrets/CHANGELOG.md
+++ b/RockLib.Secrets/CHANGELOG.md
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## 5.0.0 - 2025-01-24
+
+#### Changed
+- Removed .NET 6.0 as a target framework.
+- Updated the following packages:
+ - RockLib.Configuration from 4.0.1 to 4.0.3
+
## 4.0.1 - 2024-07-19
#### Changed
diff --git a/RockLib.Secrets/RockLib.Secrets.csproj b/RockLib.Secrets/RockLib.Secrets.csproj
index 4d550e7..695606f 100644
--- a/RockLib.Secrets/RockLib.Secrets.csproj
+++ b/RockLib.Secrets/RockLib.Secrets.csproj
@@ -11,9 +11,9 @@
A changelog is available at https://github.com/RockLib/RockLib.Secrets/blob/main/RockLib.Secrets/CHANGELOG.md.
false
rocklib secrets configuration
- 4.0.1
+ 5.0.0
True
- 4.0.1
+ 5.0.0
bin\$(Configuration)\$(TargetFramework)\$(PackageId).xml
@@ -27,7 +27,7 @@
-
+
\ No newline at end of file