Skip to content

Commit

Permalink
Bump Version to 9.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rlabrecque committed Apr 6, 2017
1 parent f510c7f commit f92f6f1
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 37 deletions.
2 changes: 1 addition & 1 deletion Plugins/Steamworks.NET/Steam.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace Steamworks {
public static class Version {
public const string SteamworksNETVersion = "9.0.0";
public const string SteamworksNETVersion = "9.1.0";
public const string SteamworksSDKVersion = "1.39";
public const string SteamAPIDLLVersion = "03.75.32.07";
public const int SteamAPIDLLSize = 219424;
Expand Down
71 changes: 35 additions & 36 deletions Standalone/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,36 +1,35 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Steamworks.NET")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Riley Labrecque")]
[assembly: AssemblyProduct("Steamworks.NET")]
[assembly: AssemblyCopyright("Copyright © Riley Labrecque 2013-2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

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

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("316ab144-2a2a-4847-857b-63317c980dda")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// 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("9.0.0")]
[assembly: AssemblyFileVersion("9.0.0")]
using System.Reflection;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Steamworks.NET")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Riley Labrecque")]
[assembly: AssemblyProduct("Steamworks.NET")]
[assembly: AssemblyCopyright("Copyright © Riley Labrecque 2013-2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

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

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("316ab144-2a2a-4847-857b-63317c980dda")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// 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(Steamworks.Version.SteamworksNETVersion)]
[assembly: AssemblyFileVersion(Steamworks.Version.SteamworksNETVersion)]

0 comments on commit f92f6f1

Please sign in to comment.