Skip to content

Commit

Permalink
Update and Correct versions
Browse files Browse the repository at this point in the history
  • Loading branch information
QilongTang committed Jan 8, 2024
1 parent 659fdee commit bd90b3f
Show file tree
Hide file tree
Showing 8 changed files with 231 additions and 242 deletions.
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.0.1 © 2023 Autodesk, Inc. All rights reserved.
@DYNAMO v.3.0.2 © 2023 Autodesk, Inc. All rights reserved.
Dynamo License

Those portions created by Ian are provided with the following copyright:
Expand Down
437 changes: 213 additions & 224 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 2023")]
[assembly: AssemblyCopyright("Copyright © Autodesk, Inc 2023")]
[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.0.1.7190")]
[assembly: AssemblyVersion("3.0.2.7376")]


// 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.0.1.7190")]
[assembly: AssemblyFileVersion("3.0.2.7376")]
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 = 0;
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(2022,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.0.0' />
<upi_attribute name='id' value='3.0.2' />
</upi_element>
</upi_element>
</upi_element>
Expand Down
8 changes: 4 additions & 4 deletions tools/autobuild/build.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"product_id": "DYN",
"release_id": "3.0.1",
"release_id": "3.0.0",
"master_id": "Win64",
"build_id": "3.0.1",
"name": "3.0.1",
"build_milestone": "FCS",
"build_id": "3.0.2",
"name": "3.0.2",
"build_milestone": "Update 2",
"description":"Build"
}
6 changes: 3 additions & 3 deletions tools/autobuild/master.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"product_id": "DYN",
"release_id": "3.0.1",
"name": "DynamoCore3.0.1 Win64",
"release_id": "3.0.0",
"name": "DynamoCore3.0.0 Win64",
"master_id": "Win64",
"language_pk": 1,
"language_code_pk": 3,
"master_platform_pk": 2,
"master_type_pk": 1,
"description":"DynamoCore3.0.1"
"description":"DynamoCore3.0.0"
}
10 changes: 5 additions & 5 deletions tools/autobuild/release.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"product_id": "DYN",
"release_id": "3.0.1",
"name": "DynamoCore3.0.1",
"marketing_release_name": "DynamoCore3.0.1",
"description":"DynamoCore3.0.1",
"code_name": "DynamoCore3.0.1"
"release_id": "3.0.0",
"name": "DynamoCore3.0.0",
"marketing_release_name": "DynamoCore3.0.0",
"description":"DynamoCore3.0.0",
"code_name": "DynamoCore3.0.0"
}

0 comments on commit bd90b3f

Please sign in to comment.