Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@DYNAMO v.3.5.1 © 2025 Autodesk, Inc. All rights reserved.
@DYNAMO v.3.5.2 © 2025 Autodesk, Inc. All rights reserved.

Dynamo License

Expand Down
223 changes: 214 additions & 9 deletions doc/distrib/License.rtf

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/AssemblySharedInfoGenerator/AssemblySharedInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// associated with an assembly.
[assembly: AssemblyCompany("Autodesk, Inc")]
[assembly: AssemblyProduct("Dynamo")]
[assembly: AssemblyCopyright("Copyright © Autodesk, Inc 2025")]
[assembly: AssemblyCopyright("Copyright © Autodesk, Inc 2025")]

Copilot AI Jun 3, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The copyright symbol appears to be corrupted; please replace it with the proper '©' character.

Suggested change
[assembly: AssemblyCopyright("Copyright Autodesk, Inc 2025")]
[assembly: AssemblyCopyright("Copyright © Autodesk, Inc 2025")]

Copilot uses AI. Check for mistakes.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm I thought this is done already based on the diff

[assembly: AssemblyTrademark("")]

//In order to begin building localizable applications, set
Expand Down Expand Up @@ -45,7 +45,7 @@
// to distinguish one build from another. AssemblyFileVersion is specified
// in AssemblyVersionInfo.cs so that it can be easily incremented by the
// automated build process.
[assembly: AssemblyVersion("3.5.1.8695")]
[assembly: AssemblyVersion("3.5.2.8841")]


// By default, the "Product version" shown in the file properties window is
Expand All @@ -64,4 +64,4 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyFileVersion("3.5.1.8695")]
[assembly: AssemblyFileVersion("3.5.2.8841")]
2 changes: 1 addition & 1 deletion src/AssemblySharedInfoGenerator/AssemblySharedInfo.tt
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ using System.Runtime.InteropServices;
<#+
int MajorVersion = 3;
int MinorVersion = 5;
int BuildNumber = 1;
int BuildNumber = 2;
// The datetime baseline we choose using this algorithm will affect build number and all nuget packages uploaded
// Please only change when major or minor version got incremented
int RevisionNumber = ((int)(DateTime.UtcNow - new DateTime(2023,1,1)).TotalDays)*10+((int)DateTime.UtcNow.Hour)/3;
Expand Down
2 changes: 1 addition & 1 deletion src/Config/upiconfig.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<upi_attribute name='id' value='Win64'/>
<upi_element name='level'>
<upi_attribute name='name' value='build'/>
<upi_attribute name='id' value='3.5.0' />
<upi_attribute name='id' value='3.5.2' />
</upi_element>
</upi_element>
</upi_element>
Expand Down
6 changes: 3 additions & 3 deletions tools/autobuild/build.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"product_id": "DYN",
"release_id": "3.5.0",
"master_id": "Win64",
"build_id": "3.5.1",
"name": "3.5.1",
"build_milestone": "Update 1",
"build_id": "3.5.2",
"name": "3.5.2",
"build_milestone": "Update 2",
"description":"Build"
}
Loading