Skip to content

Commit e259e5c

Browse files
committed
updating new version and changelog
1 parent 7c42807 commit e259e5c

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff 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

api/Const/Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ namespace api.Const;
22

33
public static class VersionInfo
44
{
5-
public const string CurrentVersion = "1.0.5";
5+
public const string CurrentVersion = "1.0.6";
66
}

api/Program.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@
55
using api.Utils;
66
using System.Net;
77
using api.Const;
8+
using Microsoft.OpenApi;
89

910
var builder = WebApplication.CreateBuilder(args);
1011

1112
builder.Services.AddEndpointsApiExplorer();
1213
builder.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",

0 commit comments

Comments
 (0)