Skip to content

Commit

Permalink
chore: clean up, version bump, update Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanrobot committed Jan 8, 2022
1 parent de552d6 commit d17a8e4
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 24 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
## [Unreleased Changes]
<a name="2.2.0"></a>
## [v2.2.0](https://github.com/jordanrobot/InventorConfig/releases/tag/v2.2.0) (2022-01-07)

### Added

* Add icon.
* GUI application (inventor-config-gui.exe)
* Add ControlShortcuts to specify custom command shortcuts within inventor
* 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.
* Empty array values are now ignored in configs.
* Command Line: --path and --option switches now have short switches (-p and -o, respectively).

### Fixed

- Added conventional commits keywords to gitversion configuration.
- Improved user feedback in inventor-config-gui
- Cleaned up nuget packages.

<a name="2.1.0"></a>
## [2.1.0](https://github.com/jordanrobot/config-loader/compare/v2.0.0...2.1.0) (2021-02-13)
Expand Down
10 changes: 0 additions & 10 deletions build events wip.md

This file was deleted.

2 changes: 1 addition & 1 deletion src/InventorConfig.Console/InventorConfig.Console.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<ApplicationVersion>2.2.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
Expand Down
7 changes: 4 additions & 3 deletions src/InventorConfig.Console/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
//
// 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: AssemblyVersion("2.1.0")]
[assembly: AssemblyFileVersion("2.1.0")]
// [assembly: AssemblyVersion("2.2.0.0")]
[assembly: AssemblyVersion("2.2.0.0")]
[assembly: AssemblyFileVersion("2.2.0.0")]
[assembly: AssemblyInformationalVersion("2.2.0+36.Branch.master.Sha.404245b6c46686d990692a3d27e96a2c17630563")]
3 changes: 2 additions & 1 deletion src/InventorConfig.Gui/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Windows;
using System.Windows;

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

2 changes: 1 addition & 1 deletion src/InventorConfig.Gui/InventorConfig.Gui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<UseWPF>true</UseWPF>
<Configurations>Debug;Release</Configurations>
<AssemblyName>inventor-config-gui</AssemblyName>
<Version>2.1.0</Version>
<Version>2.2.0</Version>
<ApplicationIcon>InventorConfigOrangeBorder.ico</ApplicationIcon>
</PropertyGroup>

Expand Down
6 changes: 3 additions & 3 deletions src/InventorConfig/InventorConfig.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>InventorConfig</RootNamespace>
<Version>2.1.0</Version>
<Version>2.2.0</Version>
<Authors>jordanrobot</Authors>
<Company />
<Description>This is a simple config tool for Autodesk Inventor to standardize Inventor configurations across users' computers.</Description>
Expand All @@ -12,8 +12,8 @@
<PackageProjectUrl>https://github.com/jordanrobot/inventor-config</PackageProjectUrl>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<AssemblyVersion>2.1.0</AssemblyVersion>
<FileVersion>2.1.0</FileVersion>
<AssemblyVersion>2.2.0</AssemblyVersion>
<FileVersion>2.2.0</FileVersion>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>

Expand Down
9 changes: 5 additions & 4 deletions tests/InventorConfig.Tests/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

Expand All @@ -15,6 +15,7 @@

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

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

0 comments on commit d17a8e4

Please sign in to comment.