File tree Expand file tree Collapse file tree 7 files changed +28
-19
lines changed
InventorShims-vb/My Project
GetDocumentFromObject.tests/Properties
InventorShims.manual/My Project
InventorShims.tests/Properties Expand file tree Collapse file tree 7 files changed +28
-19
lines changed Original file line number Diff line number Diff line change 1
1
2
- ## [ Unreleased ]
2
+ ## [ 1.2.0 ] - 2021-08-15
3
3
4
4
### Added
5
5
- ExternalRuleDirectories object allows you to manipulate the iLogic Addin's list of External Rules Directories in a more straightforward manner.
6
+
6
7
### Fixed
7
8
- Added conventional commits keywords to gitversion configuration.
8
9
Original file line number Diff line number Diff line change @@ -29,7 +29,8 @@ Imports System.Runtime.InteropServices
29
29
'
30
30
' You can specify all the values or you can default the Build and Revision Numbers
31
31
' by using the '*' as shown below:
32
- ' <Assembly: AssemblyVersion("1.0.* ")>
32
+ ' <Assembly: AssemblyVersion("1.2.0.0 ")>
33
33
34
- < Assembly : AssemblyVersion( "1.0.0.0" )>
35
- < Assembly : AssemblyFileVersion( "1.0.0.0" )>
34
+ < Assembly : AssemblyVersion( "1.2.0.0" )>
35
+ < Assembly : AssemblyFileVersion( "1.2.0.0" )>
36
+ < Assembly : AssemblyInformationalVersion( "1.2.0+15.Branch.master.Sha.c042bdaac806c8af120760bd09aefd43b37e4801" )>
Original file line number Diff line number Diff line change 2
2
<package >
3
3
<metadata >
4
4
<id >InventorShims</id >
5
- <version >1.1.2 </version >
5
+ <version >1.2.0 </version >
6
6
<title >InventorShims</title >
7
7
<authors >InventorCode</authors >
8
8
<owners >InventorCode</owners >
11
11
<iconUrl >https://raw.githubusercontent.com/InventorCode/InventorShims/master/images/InventorCode-brackets-logo-64x64.png</iconUrl >
12
12
<requireLicenseAcceptance >false</requireLicenseAcceptance >
13
13
<description >A collection of extension APIs for Autodesk Inventor. </description >
14
- <releaseNotes >Removed stubborn ILMerge dependency, for real this time .</releaseNotes >
14
+ <releaseNotes >Added a simplified ExternalRuleDirectories object .</releaseNotes >
15
15
<copyright >Copyright 2021</copyright >
16
16
<tags >Autodesk Inventor API</tags >
17
+ <dependencies >
18
+ <group targetFramework =" .NETFramework4.7" />
19
+ </dependencies >
17
20
</metadata >
18
21
</package >
Original file line number Diff line number Diff line change 30
30
//
31
31
// You can specify all the values or you can default the Build and Revision Numbers
32
32
// by using the '*' as shown below:
33
- // [assembly: AssemblyVersion("1.0.*")]
34
- [ assembly: AssemblyVersion ( "1.1.2.0" ) ]
35
- [ assembly: AssemblyFileVersion ( "1.1.2.0" ) ]
33
+ // [assembly: AssemblyVersion("1.2.0.0")]
34
+ [ assembly: AssemblyVersion ( "1.2.0.0" ) ]
35
+ [ assembly: AssemblyFileVersion ( "1.2.0.0" ) ]
36
+ [ assembly: AssemblyInformationalVersion ( "1.2.0+15.Branch.master.Sha.c042bdaac806c8af120760bd09aefd43b37e4801" ) ]
Original file line number Diff line number Diff line change 31
31
//
32
32
// You can specify all the values or you can default the Build and Revision Numbers
33
33
// by using the '*' as shown below:
34
- // [assembly: AssemblyVersion("1.0.*")]
35
- [ assembly: AssemblyVersion ( "1.0.0.0" ) ]
36
- [ assembly: AssemblyFileVersion ( "1.0.0.0" ) ]
34
+ // [assembly: AssemblyVersion("1.2.0.0")]
35
+ [ assembly: AssemblyVersion ( "1.2.0.0" ) ]
36
+ [ assembly: AssemblyFileVersion ( "1.2.0.0" ) ]
37
+ [ assembly: AssemblyInformationalVersion ( "1.2.0+15.Branch.master.Sha.c042bdaac806c8af120760bd09aefd43b37e4801" ) ]
Original file line number Diff line number Diff line change @@ -29,7 +29,8 @@ Imports System.Runtime.InteropServices
29
29
'
30
30
' You can specify all the values or you can default the Build and Revision Numbers
31
31
' by using the '*' as shown below:
32
- ' <Assembly: AssemblyVersion("1.0.* ")>
32
+ ' <Assembly: AssemblyVersion("1.2.0.0 ")>
33
33
34
- < Assembly : AssemblyVersion( "1.0.0.0" )>
35
- < Assembly : AssemblyFileVersion( "1.0.0.0" )>
34
+ < Assembly : AssemblyVersion( "1.2.0.0" )>
35
+ < Assembly : AssemblyFileVersion( "1.2.0.0" )>
36
+ < Assembly : AssemblyInformationalVersion( "1.2.0+15.Branch.master.Sha.c042bdaac806c8af120760bd09aefd43b37e4801" )>
Original file line number Diff line number Diff line change 1
- using System . Reflection ;
1
+ using System . Reflection ;
2
2
using System . Runtime . CompilerServices ;
3
3
using System . Runtime . InteropServices ;
4
4
15
15
16
16
[ assembly: Guid ( "9a4c4253-55ea-4218-9fe0-9e473562a096" ) ]
17
17
18
- // [assembly: AssemblyVersion("1.0.*")]
19
- [ assembly: AssemblyVersion ( "1.0.0.0" ) ]
20
- [ assembly: AssemblyFileVersion ( "1.0.0.0" ) ]
18
+ // [assembly: AssemblyVersion("1.2.0.0")]
19
+ [ assembly: AssemblyVersion ( "1.2.0.0" ) ]
20
+ [ assembly: AssemblyFileVersion ( "1.2.0.0" ) ]
21
+ [ assembly: AssemblyInformationalVersion ( "1.2.0+15.Branch.master.Sha.c042bdaac806c8af120760bd09aefd43b37e4801" ) ]
You can’t perform that action at this time.
0 commit comments