Skip to content

Commit 1dda597

Browse files
committed
Release v0.7.10
1 parent 74914f7 commit 1dda597

File tree

8 files changed

+28
-17
lines changed

8 files changed

+28
-17
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ This file is automatically generated from commit messages during releases.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.7.10] - 2026-01-06
9+
10+
### Fixed
11+
- Fix low priority maintenance and consistency issues
12+
- Fix medium priority logic bugs across all backends
13+
- Fix critical data loss bugs in iOS, Android, Po, and Json backends
14+
15+
### Added
16+
- Add security hardening and atomic writes to backend writers
17+
- Add XLIFF 2.0 plural support using group elements
18+
819
## [0.7.9] - 2026-01-06
920

1021
### Fixed
@@ -853,6 +864,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
853864
- **License:**
854865
- MIT License with copyright headers in all source files
855866

867+
[0.7.10]: https://github.com/nickprotop/LocalizationManager/compare/v0.7.9...v0.7.10
856868
[0.7.9]: https://github.com/nickprotop/LocalizationManager/compare/v0.7.8...v0.7.9
857869
[0.7.8]: https://github.com/nickprotop/LocalizationManager/compare/v0.7.7...v0.7.8
858870
[0.7.7]: https://github.com/nickprotop/LocalizationManager/compare/v0.7.6...v0.7.7

LocalizationManager.Core/LocalizationManager.Core.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<Nullable>enable</Nullable>
77

88
<!-- Version and Assembly Information -->
9-
<Version>0.7.9</Version>
10-
<AssemblyVersion>0.7.9.0</AssemblyVersion>
11-
<FileVersion>0.7.9.0</FileVersion>
9+
<Version>0.7.10</Version>
10+
<AssemblyVersion>0.7.10.0</AssemblyVersion>
11+
<FileVersion>0.7.10.0</FileVersion>
1212
<Authors>Nikolaos Protopapas</Authors>
1313
<Company>Nikolaos Protopapas</Company>
1414
<Product>Localization Resource Manager (LRM) - Core Library</Product>

LocalizationManager.JsonLocalization.Generator/LocalizationManager.JsonLocalization.Generator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<!-- NuGet Package Metadata -->
1414
<PackageId>LocalizationManager.JsonLocalization.Generator</PackageId>
15-
<Version>0.7.9</Version>
15+
<Version>0.7.10</Version>
1616
<Authors>Nikolaos Protopapas</Authors>
1717
<Company>LocalizationManager</Company>
1818
<Product>LocalizationManager.JsonLocalization.Generator</Product>

LocalizationManager.JsonLocalization/LocalizationManager.JsonLocalization.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<!-- NuGet Package Metadata -->
1010
<PackageId>LocalizationManager.JsonLocalization</PackageId>
11-
<Version>0.7.9</Version>
11+
<Version>0.7.10</Version>
1212
<Authors>Nikolaos Protopapas</Authors>
1313
<Company>LocalizationManager</Company>
1414
<Product>LocalizationManager.JsonLocalization</Product>

LocalizationManager.Shared/LocalizationManager.Shared.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<Nullable>enable</Nullable>
77

88
<!-- Version and Assembly Information -->
9-
<Version>0.7.9</Version>
10-
<AssemblyVersion>0.7.9.0</AssemblyVersion>
11-
<FileVersion>0.7.9.0</FileVersion>
9+
<Version>0.7.10</Version>
10+
<AssemblyVersion>0.7.10.0</AssemblyVersion>
11+
<FileVersion>0.7.10.0</FileVersion>
1212
<Authors>Nikolaos Protopapas</Authors>
1313
<Company>Nikolaos Protopapas</Company>
1414
<Product>Localization Resource Manager (LRM) - Shared Library</Product>

LocalizationManager.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
<Nullable>enable</Nullable>
99

1010
<!-- Version and Assembly Information -->
11-
<Version>0.7.9</Version>
12-
<AssemblyVersion>0.7.9.0</AssemblyVersion>
13-
<FileVersion>0.7.9.0</FileVersion>
11+
<Version>0.7.10</Version>
12+
<AssemblyVersion>0.7.10.0</AssemblyVersion>
13+
<FileVersion>0.7.10.0</FileVersion>
1414
<Authors>Nikolaos Protopapas</Authors>
1515
<Company>Nikolaos Protopapas</Company>
1616
<Product>Localization Resource Manager (LRM)</Product>

debian/changelog

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
lrm (0.7.9-1) noble; urgency=medium
1+
lrm (0.7.10-1) noble; urgency=medium
22

3-
* Fixed: Fix case-insensitive key lookups in view and data processing commands\n- Fix backup rotation test for weekly backups\n- Fix ApiKeyResolver tests to isolate from system credential store\n
4-
* Added: Add Radzen Advanced Filtering for Translation Grid\n- Add Umami analytics integration with runtime website ID injection\n
5-
* Changed: Improve PO file format preservation\n- Improve translation grid table readability and column management\n
3+
* Fixed: Fix low priority maintenance and consistency issues\n- Fix medium priority logic bugs across all backends\n- Fix critical data loss bugs in iOS, Android, Po, and Json backends\n
4+
* Added: Add security hardening and atomic writes to backend writers\n- Add XLIFF 2.0 plural support using group elements\n
65

7-
-- Nikolaos Protopapas <nikolaos.protopapas@gmail.com> Tue, 06 Jan 2026 01:46:46 +0200
6+
-- Nikolaos Protopapas <nikolaos.protopapas@gmail.com> Tue, 06 Jan 2026 11:55:51 +0200

vscode-extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "localization-manager",
33
"displayName": "LRM - .NET Localization",
44
"description": "Manage .NET localization files (.resx and JSON) with real-time validation, translation, and code scanning",
5-
"version": "0.7.9",
5+
"version": "0.7.10",
66
"icon": "images/icon.png",
77
"publisher": "nickprotop",
88
"repository": {

0 commit comments

Comments
 (0)