Skip to content

Commit

Permalink
We are version 0.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
xforever1313 committed Jul 9, 2017
1 parent ae820ad commit 3af152f
Show file tree
Hide file tree
Showing 18 changed files with 32 additions and 22 deletions.
2 changes: 1 addition & 1 deletion Chaskis/Chaskis/Chaskis.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class Chaskis : IDisposable
{
// ---------------- Fields ----------------

public const string VersionStr = "1.0.0";
public const string VersionStr = "0.2.0";

/// <summary>
/// The IRC Bot.
Expand Down
8 changes: 5 additions & 3 deletions Chaskis/ChaskisCore/IrcBot.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
// Copyright Seth Hendrick 2016.
//
// Copyright Seth Hendrick 2016-2017.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file ../../LICENSE_1_0.txt or copy at
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//

using System;
using System.Collections.Generic;
Expand All @@ -17,7 +19,7 @@ public class IrcBot : IDisposable
/// <summary>
/// Version in the form of a string.
/// </summary>
public const string VersionString = "0.0.1";
public const string VersionString = "0.2.0";

/// <summary>
/// Semantic Version of the bot.
Expand Down
14 changes: 11 additions & 3 deletions Chaskis/ChaskisCore/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
using System.Reflection;
//
// Copyright Seth Hendrick 2016-2017.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//

using System.Reflection;
using ChaskisCore;

// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
Expand All @@ -8,15 +16,15 @@
[assembly: AssemblyConfiguration( "" )]
[assembly: AssemblyCompany( "" )]
[assembly: AssemblyProduct( "" )]
[assembly: AssemblyCopyright( "Seth Hendrick 2016" )]
[assembly: AssemblyCopyright( "Seth Hendrick 2016-2017" )]
[assembly: AssemblyTrademark( "" )]
[assembly: AssemblyCulture( "" )]

// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion( "1.0.*" )]
[assembly: AssemblyVersion( IrcBot.VersionString )]

// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
Expand Down
2 changes: 1 addition & 1 deletion Chaskis/Install/windows/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<Product Id="F41EEEAA-265D-4B82-B266-426C023B4146"
Name="Chaskis IRC Bot"
Language="1033"
Version="1.0.0"
Version="0.2.0"
Manufacturer="Seth Hendrick"
UpgradeCode="03E2F9BC-D817-4E4B-A957-AC54566F4524"
>
Expand Down
2 changes: 1 addition & 1 deletion Chaskis/Plugins/CapsWatcher/CapsWatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class CapsWatcher : IPlugin
{
// -------- Fields --------

public const string VersionStr = "1.0.0";
public const string VersionStr = "0.2.0";

/// <summary>
/// The handlers for this plugin.
Expand Down
2 changes: 1 addition & 1 deletion Chaskis/Plugins/CowSayBot/CowSayBot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class CowSayBot : IPlugin
{
// -------- Fields --------

public const string VersionStr = "1.0.0";
public const string VersionStr = "0.2.0";

/// <summary>
/// Process Start info
Expand Down
2 changes: 1 addition & 1 deletion Chaskis/Plugins/CrossChannel/CrossChannel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class CrossChannel : IPlugin
{
// ---------------- Fields ----------------

public const string VersionStr = "1.0.0";
public const string VersionStr = "0.2.0";

/// <summary>
/// The handlers for this plugin.
Expand Down
2 changes: 1 addition & 1 deletion Chaskis/Plugins/IrcLogger/IrcLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class IrcLogger : IPlugin
{
// -------- Fields --------

public const string VersionStr = "1.0.0";
public const string VersionStr = "0.2.0";

/// <summary>
/// The handlers for this plugin.
Expand Down
2 changes: 1 addition & 1 deletion Chaskis/Plugins/KarmaBot/KarmaBot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class KarmaBot : IPlugin
{
// -------- Fields --------

public const string VersionStr = "1.0.0";
public const string VersionStr = "0.2.0";

/// <summary>
/// List of handlers.
Expand Down
2 changes: 1 addition & 1 deletion Chaskis/Plugins/MathBot/MathBot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class MathBot : IPlugin
{
// -------- Fields --------

public const string VersionStr = "1.0.0";
public const string VersionStr = "0.2.0";

/// <summary>
/// The handlers for this plugin.
Expand Down
2 changes: 1 addition & 1 deletion Chaskis/Plugins/QuoteBot/QuoteBot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class QuoteBot : IPlugin
{
// ---------------- Fields ----------------

public const string VersionStr = "1.0.0";
public const string VersionStr = "0.2.0";

/// <summary>
/// The handlers for this plugin.
Expand Down
2 changes: 1 addition & 1 deletion Chaskis/Plugins/RssBot/RssBot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class RssBot : IPlugin
{
// ---------------- Fields ----------------

public const string VersionStr = "1.0.0";
public const string VersionStr = "0.2.0";

/// <summary>
/// The handlers for this plugin.
Expand Down
2 changes: 1 addition & 1 deletion Chaskis/Plugins/ServerDiagnostics/ServerDiagnostics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class ServerDiagnostics : IPlugin
{
// -------- Fields --------

public const string VersionStr = "1.0.0";
public const string VersionStr = "0.2.0";

/// <summary>
/// List of IRC handlers.
Expand Down
2 changes: 1 addition & 1 deletion Chaskis/Plugins/UrlBot/UrlBot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class UrlBot : IPlugin
{
// -------- Fields --------

public const string VersionStr = "1.0.0";
public const string VersionStr = "0.2.0";

/// <summary>
/// The handlers for this plugin.
Expand Down
2 changes: 1 addition & 1 deletion Chaskis/Plugins/UserListBot/UserListBot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class UserListBot : IPlugin
{
// -------- Fields --------

public const string VersionStr = "1.0.0";
public const string VersionStr = "0.2.0";

/// <summary>
/// The handlers for this plugin.
Expand Down
2 changes: 1 addition & 1 deletion Chaskis/Plugins/WeatherBot/WeatherBot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class WeatherBot : IPlugin
{
// -------- Fields --------

public const string VersionStr = "1.0.0";
public const string VersionStr = "0.2.0";

/// <summary>
/// The command to trigger the weather bot.
Expand Down
2 changes: 1 addition & 1 deletion Chaskis/Plugins/WelcomeBot/WelcomeBot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class WelcomeBot : IPlugin
{
// -------- Fields --------

public const string VersionStr = "1.0.0";
public const string VersionStr = "0.2.0";

/// <summary>
/// Whether or not the plugin is loaded an ready to go.
Expand Down
2 changes: 1 addition & 1 deletion Chaskis/Plugins/XmlBot/XmlBot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class XmlBot : IPlugin
{
// ---------------- Fields ----------------

public const string VersionStr = "1.0.0";
public const string VersionStr = "0.2.0";

/// <summary>
/// The handlers for this plugin.
Expand Down

0 comments on commit 3af152f

Please sign in to comment.