Skip to content

Commit

Permalink
### 11/12 リリース情報(ver.1.4.10.1)
Browse files Browse the repository at this point in the history
・CodeDefinerのマージ処理でバージョンの判定が正しくできない問題を解消。
  • Loading branch information
pierre3 committed Nov 12, 2024
1 parent 1cb2a73 commit 680f3f8
Show file tree
Hide file tree
Showing 13 changed files with 37 additions and 38 deletions.
6 changes: 3 additions & 3 deletions Implem.CodeDefiner/Implem.CodeDefiner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<TargetFramework>net8.0</TargetFramework>
<Copyright>Copyright © Implem Inc 2014 - 2024</Copyright>
<Description>This program does the automatic code creation and merging of existing code based on the definition. Also it will make the configuration change of sql server database.</Description>
<AssemblyVersion>1.4.10.0</AssemblyVersion>
<FileVersion>1.4.10.0</FileVersion>
<Version>1.4.10.0</Version>
<AssemblyVersion>1.4.10.1</AssemblyVersion>
<FileVersion>1.4.10.1</FileVersion>
<Version>1.4.10.1</Version>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>

Expand Down
3 changes: 1 addition & 2 deletions Implem.CodeDefiner/Starter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,7 @@ private static string GetDefaultPatchDir()

private static string ReplaceVersion(string versionInfo)
{
var pattern = @"(\d+)\.(\d+)\.(\d+)\.(\d+)";
return Regex.Replace(versionInfo, pattern, "0$1.0$2.0$3.0$4");
return string.Join(".", versionInfo.Split(".").Select(s => ("00" + s)[^2..]));
}

private static void CheckVersion(string newVersion,string currentVersion ,string patchSourcePath)
Expand Down
6 changes: 3 additions & 3 deletions Implem.DefinitionAccessor/Implem.DefinitionAccessor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Copyright>Copyright © Implem Inc 2014 - 2024</Copyright>
<AssemblyVersion>1.4.10.0</AssemblyVersion>
<FileVersion>1.4.10.0</FileVersion>
<Version>1.4.10.0</Version>
<AssemblyVersion>1.4.10.1</AssemblyVersion>
<FileVersion>1.4.10.1</FileVersion>
<Version>1.4.10.1</Version>
<Nullable>disable</Nullable>
</PropertyGroup>

Expand Down
6 changes: 3 additions & 3 deletions Implem.DisplayAccessor/Implem.DisplayAccessor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Copyright>Copyright © Implem Inc 2014 - 2024</Copyright>
<AssemblyVersion>1.4.10.0</AssemblyVersion>
<FileVersion>1.4.10.0</FileVersion>
<Version>1.4.10.0</Version>
<AssemblyVersion>1.4.10.1</AssemblyVersion>
<FileVersion>1.4.10.1</FileVersion>
<Version>1.4.10.1</Version>
<Nullable>disable</Nullable>
</PropertyGroup>

Expand Down
6 changes: 3 additions & 3 deletions Implem.Factory/Implem.Factory.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Copyright>Copyright © Implem Inc 2014 - 2024</Copyright>
<AssemblyVersion>1.4.10.0</AssemblyVersion>
<FileVersion>1.4.10.0</FileVersion>
<Version>1.4.10.0</Version>
<AssemblyVersion>1.4.10.1</AssemblyVersion>
<FileVersion>1.4.10.1</FileVersion>
<Version>1.4.10.1</Version>
<Nullable>disable</Nullable>
</PropertyGroup>

Expand Down
6 changes: 3 additions & 3 deletions Implem.Libraries/Implem.Libraries.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Copyright>Copyright © Implem Inc 2014 - 2024</Copyright>
<AssemblyVersion>1.4.10.0</AssemblyVersion>
<FileVersion>1.4.10.0</FileVersion>
<Version>1.4.10.0</Version>
<AssemblyVersion>1.4.10.1</AssemblyVersion>
<FileVersion>1.4.10.1</FileVersion>
<Version>1.4.10.1</Version>
<Nullable>disable</Nullable>
</PropertyGroup>

Expand Down
6 changes: 3 additions & 3 deletions Implem.ParameterAccessor/Implem.ParameterAccessor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Copyright>Copyright © Implem Inc 2014 - 2024</Copyright>
<AssemblyVersion>1.4.10.0</AssemblyVersion>
<FileVersion>1.4.10.0</FileVersion>
<Version>1.4.10.0</Version>
<AssemblyVersion>1.4.10.1</AssemblyVersion>
<FileVersion>1.4.10.1</FileVersion>
<Version>1.4.10.1</Version>
<Nullable>disable</Nullable>
</PropertyGroup>

Expand Down
6 changes: 3 additions & 3 deletions Implem.Pleasanter/Implem.Pleasanter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<Copyright>Copyright © Implem Inc 2014 - 2024</Copyright>
<Description>Business application platform</Description>
<AssemblyName>Implem.Pleasanter</AssemblyName>
<AssemblyVersion>1.4.10.0</AssemblyVersion>
<FileVersion>1.4.10.0</FileVersion>
<Version>1.4.10.0</Version>
<AssemblyVersion>1.4.10.1</AssemblyVersion>
<FileVersion>1.4.10.1</FileVersion>
<Version>1.4.10.1</Version>
<Nullable>disable</Nullable>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerComposeProjectPath>..\docker-compose.dcproj</DockerComposeProjectPath>
Expand Down
6 changes: 3 additions & 3 deletions Implem.TestAutomation/implem.TestAutomation.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Copyright>Copyright © Implem Inc 2014 - 2024</Copyright>
<AssemblyVersion>1.4.10.0</AssemblyVersion>
<FileVersion>1.4.10.0</FileVersion>
<Version>1.4.10.0</Version>
<AssemblyVersion>1.4.10.1</AssemblyVersion>
<FileVersion>1.4.10.1</FileVersion>
<Version>1.4.10.1</Version>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>

Expand Down
6 changes: 3 additions & 3 deletions Rds/Implem.IRds/Implem.IRds.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Copyright>Copyright © Implem Inc 2014 - 2024</Copyright>
<AssemblyVersion>1.4.10.0</AssemblyVersion>
<FileVersion>1.4.10.0</FileVersion>
<Version>1.4.10.0</Version>
<AssemblyVersion>1.4.10.1</AssemblyVersion>
<FileVersion>1.4.10.1</FileVersion>
<Version>1.4.10.1</Version>
<Nullable>disable</Nullable>
</PropertyGroup>

Expand Down
6 changes: 3 additions & 3 deletions Rds/Implem.MySql/Implem.MySql.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Copyright>Copyright © Implem Inc 2014 - 2024</Copyright>
<AssemblyVersion>1.4.10.0</AssemblyVersion>
<FileVersion>1.4.10.0</FileVersion>
<Version>1.4.10.0</Version>
<AssemblyVersion>1.4.10.1</AssemblyVersion>
<FileVersion>1.4.10.1</FileVersion>
<Version>1.4.10.1</Version>
<Nullable>disable</Nullable>
</PropertyGroup>

Expand Down
6 changes: 3 additions & 3 deletions Rds/Implem.PostgreSql/Implem.PostgreSql.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Copyright>Copyright © Implem Inc 2014 - 2024</Copyright>
<AssemblyVersion>1.4.10.0</AssemblyVersion>
<FileVersion>1.4.10.0</FileVersion>
<Version>1.4.10.0</Version>
<AssemblyVersion>1.4.10.1</AssemblyVersion>
<FileVersion>1.4.10.1</FileVersion>
<Version>1.4.10.1</Version>
<Nullable>disable</Nullable>
</PropertyGroup>

Expand Down
6 changes: 3 additions & 3 deletions Rds/Implem.SqlServer/Implem.SqlServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Copyright>Copyright © Implem Inc 2014 - 2024</Copyright>
<AssemblyVersion>1.4.10.0</AssemblyVersion>
<FileVersion>1.4.10.0</FileVersion>
<Version>1.4.10.0</Version>
<AssemblyVersion>1.4.10.1</AssemblyVersion>
<FileVersion>1.4.10.1</FileVersion>
<Version>1.4.10.1</Version>
<Nullable>disable</Nullable>
</PropertyGroup>

Expand Down

0 comments on commit 680f3f8

Please sign in to comment.