Skip to content

Commit d17a8e4

Browse files
committed
chore: clean up, version bump, update Changelog
1 parent de552d6 commit d17a8e4

File tree

8 files changed

+27
-24
lines changed

8 files changed

+27
-24
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
## [Unreleased Changes]
1+
<a name="2.2.0"></a>
2+
## [v2.2.0](https://github.com/jordanrobot/InventorConfig/releases/tag/v2.2.0) (2022-01-07)
3+
24
### Added
35

46
* Add icon.
7+
* GUI application (inventor-config-gui.exe)
8+
* Add ControlShortcuts to specify custom command shortcuts within inventor
9+
* Config keywords are no longer required. I.e. you can include as many or as little config keywords and the command will work all the same; it will ignore missing keywords.
10+
* Empty array values are now ignored in configs.
11+
* Command Line: --path and --option switches now have short switches (-p and -o, respectively).
512

613
### Fixed
14+
715
- Added conventional commits keywords to gitversion configuration.
16+
- Improved user feedback in inventor-config-gui
17+
- Cleaned up nuget packages.
818

919
<a name="2.1.0"></a>
1020
## [2.1.0](https://github.com/jordanrobot/config-loader/compare/v2.0.0...2.1.0) (2021-02-13)

build events wip.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/InventorConfig.Console/InventorConfig.Console.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<UpdateRequired>false</UpdateRequired>
2727
<MapFileExtensions>true</MapFileExtensions>
2828
<ApplicationRevision>0</ApplicationRevision>
29-
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
29+
<ApplicationVersion>2.2.0.%2a</ApplicationVersion>
3030
<UseApplicationTrust>false</UseApplicationTrust>
3131
<BootstrapperEnabled>true</BootstrapperEnabled>
3232
</PropertyGroup>

src/InventorConfig.Console/Properties/AssemblyInfo.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
//
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
33-
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("2.1.0")]
35-
[assembly: AssemblyFileVersion("2.1.0")]
33+
// [assembly: AssemblyVersion("2.2.0.0")]
34+
[assembly: AssemblyVersion("2.2.0.0")]
35+
[assembly: AssemblyFileVersion("2.2.0.0")]
36+
[assembly: AssemblyInformationalVersion("2.2.0+36.Branch.master.Sha.404245b6c46686d990692a3d27e96a2c17630563")]

src/InventorConfig.Gui/AssemblyInfo.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Windows;
1+
using System.Windows;
22

33
[assembly: ThemeInfo(
44
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
@@ -8,3 +8,4 @@
88
//(used if a resource is not found in the page,
99
// app, or any theme specific resource dictionaries)
1010
)]
11+

src/InventorConfig.Gui/InventorConfig.Gui.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<UseWPF>true</UseWPF>
77
<Configurations>Debug;Release</Configurations>
88
<AssemblyName>inventor-config-gui</AssemblyName>
9-
<Version>2.1.0</Version>
9+
<Version>2.2.0</Version>
1010
<ApplicationIcon>InventorConfigOrangeBorder.ico</ApplicationIcon>
1111
</PropertyGroup>
1212

src/InventorConfig/InventorConfig.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<RootNamespace>InventorConfig</RootNamespace>
6-
<Version>2.1.0</Version>
6+
<Version>2.2.0</Version>
77
<Authors>jordanrobot</Authors>
88
<Company />
99
<Description>This is a simple config tool for Autodesk Inventor to standardize Inventor configurations across users' computers.</Description>
@@ -12,8 +12,8 @@
1212
<PackageProjectUrl>https://github.com/jordanrobot/inventor-config</PackageProjectUrl>
1313
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
1414
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
15-
<AssemblyVersion>2.1.0</AssemblyVersion>
16-
<FileVersion>2.1.0</FileVersion>
15+
<AssemblyVersion>2.2.0</AssemblyVersion>
16+
<FileVersion>2.2.0</FileVersion>
1717
<Configurations>Debug;Release</Configurations>
1818
</PropertyGroup>
1919

tests/InventorConfig.Tests/Properties/AssemblyInfo.cs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Reflection;
1+
using System.Reflection;
22
using System.Runtime.CompilerServices;
33
using System.Runtime.InteropServices;
44

@@ -15,6 +15,7 @@
1515

1616
[assembly: Guid("acb72115-5524-4cdb-8bdd-1b5f706be6ff")]
1717

18-
// [assembly: AssemblyVersion("1.0.*")]
19-
[assembly: AssemblyVersion("1.0.0.0")]
20-
[assembly: AssemblyFileVersion("1.0.0.0")]
18+
// [assembly: AssemblyVersion("2.2.0.0")]
19+
[assembly: AssemblyVersion("2.2.0.0")]
20+
[assembly: AssemblyFileVersion("2.2.0.0")]
21+
[assembly: AssemblyInformationalVersion("2.2.0+36.Branch.master.Sha.404245b6c46686d990692a3d27e96a2c17630563")]

0 commit comments

Comments
 (0)