Skip to content

Commit

Permalink
[Build] Raise version to 4.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
dipts committed Jan 1, 2025
1 parent 855f4ae commit f9d44c5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Build/MSBuild/Macad.VersionInfo.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using namespace System::Reflection;
[assembly:AssemblyVersionAttribute("3.1.1882.3")];
[assembly:AssemblyCopyrightAttribute(L"Copyright © 2015-2024 Tobias Schachte")];
[assembly:AssemblyVersionAttribute("4.0.2007.0")];
[assembly:AssemblyCopyrightAttribute(L"Copyright © 2015-2025 Tobias Schachte")];
[assembly:AssemblyCompanyAttribute(L"Tobias Schachte")];
[assembly:AssemblyProductAttribute(L"Macad|3D")];
4 changes: 2 additions & 2 deletions Build/MSBuild/Macad.VersionInfo.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Version>3.1.1882.3</Version>
<Copyright>Copyright © 2015-2024 Tobias Schachte</Copyright>
<Version>4.0.2007.0</Version>
<Copyright>Copyright © 2015-2025 Tobias Schachte</Copyright>
<Company>Tobias Schachte</Company>
<Product>Macad|3D</Product>
</PropertyGroup>
Expand Down
10 changes: 5 additions & 5 deletions Build/MSBuild/Macad.VersionInfo.rc
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
#include <winres.h>
VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,1,1882,3
PRODUCTVERSION 3,1,1882,3
FILEVERSION 4,0,2007,0
PRODUCTVERSION 4,0,2007,0
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "FileVersion", "3.1.1882.3\0"
VALUE "ProductVersion", "3.1.1882.3\0"
VALUE "FileVersion", "4.0.2007.0\0"
VALUE "ProductVersion", "4.0.2007.0\0"
VALUE "ProductName", "Macad|3D\0"
VALUE "LegalCopyright", "Copyright (c) 2015-2024 Tobias Schachte\0"
VALUE "LegalCopyright", "Copyright (c) 2015-2025 Tobias Schachte\0"
VALUE "CompanyName", "Tobias Schachte\0"
END
END
Expand Down
2 changes: 1 addition & 1 deletion License.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015-2024 Tobias Schachte
Copyright (c) 2015-2025 Tobias Schachte

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
Expand Down
4 changes: 2 additions & 2 deletions Source/Macad.Core/Topology/Model/Model.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public class Model : Document<InteractiveEntity>
//--------------------------------------------------------------------------------------------------

public const string FileExtension = "model";
const int FileVersionMajor = 3;
const int FileVersionMinor = 2;
const int FileVersionMajor = 4;
const int FileVersionMinor = 0;

//--------------------------------------------------------------------------------------------------

Expand Down

0 comments on commit f9d44c5

Please sign in to comment.