Skip to content

Commit 9972d32

Browse files
authored
Merge pull request #17 from mcrossley/main
Support for CMX v3.28.2
2 parents 7f18011 + 1793b75 commit 9972d32

4 files changed

Lines changed: 28 additions & 15 deletions

File tree

App.config

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@
2121
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
2222
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
2323
</dependentAssembly>
24-
<dependentAssembly>
25-
<assemblyIdentity name="System.Diagnostics.DiagnosticSource" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
26-
<bindingRedirect oldVersion="0.0.0.0-7.0.0.2" newVersion="7.0.0.2" />
27-
</dependentAssembly>
2824
</assemblyBinding>
2925
</runtime>
3026
</configuration>

ExportToMySQL.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@
7979
</ItemGroup>
8080
<ItemGroup>
8181
<PackageReference Include="MySqlConnector">
82-
<Version>2.2.7</Version>
82+
<Version>2.3.3</Version>
8383
</PackageReference>
8484
<PackageReference Include="System.Diagnostics.DiagnosticSource">
85-
<Version>7.0.2</Version>
85+
<Version>8.0.0</Version>
8686
</PackageReference>
8787
</ItemGroup>
8888
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

Properties/AssemblyInfo.cs

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

5-
// General Information about an assembly is controlled through the following
4+
// General Information about an assembly is controlled through the following
65
// set of attributes. Change these attribute values to modify the information
76
// associated with an assembly.
87
[assembly: AssemblyTitle("ExportToMySQL")]
98
[assembly: AssemblyDescription("Exports Cumulus data files to MySQL")]
109
[assembly: AssemblyConfiguration("")]
1110
[assembly: AssemblyCompany("")]
1211
[assembly: AssemblyProduct("ExportToMySQL")]
13-
[assembly: AssemblyCopyright("Copyright © 2015-2023")]
12+
[assembly: AssemblyCopyright("Copyright © 2015-2024")]
1413
[assembly: AssemblyTrademark("")]
1514
[assembly: AssemblyCulture("")]
1615

17-
// Setting ComVisible to false makes the types in this assembly not visible
18-
// to COM components. If you need to access a type in this assembly from
16+
// Setting ComVisible to false makes the types in this assembly not visible
17+
// to COM components. If you need to access a type in this assembly from
1918
// COM, set the ComVisible attribute to true on that type.
2019
[assembly: ComVisible(false)]
2120

@@ -25,12 +24,12 @@
2524
// Version information for an assembly consists of the following four values:
2625
//
2726
// Major Version
28-
// Minor Version
27+
// Minor Version
2928
// Build Number
3029
// Revision
3130
//
32-
// You can specify all the values or you can default the Build and Revision Numbers
31+
// You can specify all the values or you can default the Build and Revision Numbers
3332
// by using the '*' as shown below:
3433
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.9.1.0")]
36-
[assembly: AssemblyFileVersion("1.9.1.0")]
34+
[assembly: AssemblyVersion("1.10.0.0")]
35+
[assembly: AssemblyFileVersion("1.10.0.0")]

Updates.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
2+
ver 1.10.0
3+
——————————
4+
- Support for CMX version 3.28.2
5+
6+
ver 1.9.0
7+
—————————
8+
- Support for CMX version 3.26.0
9+
- Additional logging
10+
11+
ver 1.8.1
12+
—————————
13+
- Add support for CMX version 3.25.0 or later
14+
15+
ver 1.8.0
16+
—————————
17+
- Support for Cumulus MX v3.2.40 or later with 32/64 bit capability
18+
119
ver 1.7.0
220
—————————
321
- Updated libraries to match Cumulus MX v3.23.0+

0 commit comments

Comments
 (0)