File tree Expand file tree Collapse file tree 3 files changed +18
-5
lines changed
Expand file tree Collapse file tree 3 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning].
99
1010- /
1111
12+ ## [ 1.0.6] - 2026-01-06
13+
14+ ### Changed
15+
16+ - Project migration to .NET 10.
17+ - Updated Entity Framework Core and other dependencies to version 10.
18+ - Updated Swashbuckle.AspNetCore to version 10.1.0.
19+
1220## [ 1.0.5] - 2024-12-18
1321
1422### Changed
@@ -53,6 +61,10 @@ and this project adheres to [Semantic Versioning].
5361[ semantic versioning ] : https://semver.org/spec/v2.0.0.html
5462
5563<!-- Versions -->
56- [ unreleased ] : https://github.com/Author/Repository/compare/v0.0.2...HEAD
57- [ 0.0.2 ] : https://github.com/Author/Repository/compare/v0.0.1...v0.0.2
58- [ 0.0.1 ] : https://github.com/Author/Repository/releases/tag/v0.0.1
64+ [ unreleased ] : https://github.com/Author/Repository/compare/v1.0.6...HEAD
65+ [ 1.0.6 ] : https://github.com/Author/Repository/compare/v1.0.5...v1.0.6
66+ [ 1.0.5 ] : https://github.com/Author/Repository/compare/v1.0.4...v1.0.5
67+ [ 1.0.4 ] : https://github.com/Author/Repository/compare/v1.0.3...v1.0.4
68+ [ 1.0.3 ] : https://github.com/Author/Repository/compare/v1.0.2...v1.0.3
69+ [ 1.0.2 ] : https://github.com/Author/Repository/compare/v1.0.1...v1.0.2
70+ [ 1.0.1 ] : https://github.com/Author/Repository/releases/tag/v1.0.1
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ namespace api.Const;
22
33public static class VersionInfo
44{
5- public const string CurrentVersion = "1.0.5 " ;
5+ public const string CurrentVersion = "1.0.6 " ;
66}
Original file line number Diff line number Diff line change 55using api . Utils ;
66using System . Net ;
77using api . Const ;
8+ using Microsoft . OpenApi ;
89
910var builder = WebApplication . CreateBuilder ( args ) ;
1011
1112builder . Services . AddEndpointsApiExplorer ( ) ;
1213builder . Services . AddSwaggerGen ( static options =>
1314{
1415 options . EnableAnnotations ( ) ;
15- options . SwaggerDoc ( "v1" , new OpenApiInfo
16+ options . SwaggerDoc ( "v1" , new OpenApiInfo ( )
1617 {
1718 Version = VersionInfo . CurrentVersion ,
1819 Title = "API Colombia" ,
You can’t perform that action at this time.
0 commit comments