Skip to content

Commit 166a13b

Browse files
committed
Bump version and prepare for release
1 parent 6e34616 commit 166a13b

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

Diff for: src/InEngine.Core/InEngine.Core.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
<TargetFrameworks>net47;net462;net461</TargetFrameworks>
44
</PropertyGroup>
55
<PropertyGroup>
6-
<Version>4.0.0</Version>
7-
<FileVersion>4.0.0</FileVersion>
6+
<Version>4.0.1</Version>
7+
<FileVersion>4.0.1</FileVersion>
88
<Authors>Ethan Hann</Authors>
99
<Description>Plugin-based queuing and scheduling command server.</Description>
1010
<Copyright>Copyright © 2017 Ethan Hann</Copyright>
1111
<PackageId>InEngine.Core</PackageId>
12-
<PackageVersion>4.0.0</PackageVersion>
12+
<PackageVersion>4.0.1</PackageVersion>
1313
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
1414
<PackageTags>Integration Scheduler Queue Server Quartz.NET Redis</PackageTags>
1515
<PackageLicenseUrl>https://github.com/InEngine-NET/InEngine.NET/blob/master/LICENSE</PackageLicenseUrl>

Diff for: src/InEngine.Core/Queuing/Commands/Status.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace InEngine.Core.Queuing.Commands
44
{
5-
public class Length : AbstractCommand, IHasQueueSettings
5+
public class Status : AbstractCommand, IHasQueueSettings
66
{
77
public QueueSettings QueueSettings { get; set; }
88

Diff for: src/InEngine.Core/Queuing/QueuingPlugin.cs

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ namespace InEngine.Core.Queuing
99
{
1010
public class QueuingPlugin : AbstractPlugin
1111
{
12+
[VerbOption("queue:status", HelpText = "Get the status of queues and consumers.")]
13+
public Status Status { get; set; }
14+
1215
[VerbOption("queue:publish", HelpText = "Publish a command commandEnvelope to a queue.")]
1316
public Publish Publish { get; set; }
1417

Diff for: src/InEngine/NLog.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
</targets>
1212

1313
<rules>
14-
<!-- <logger name="*" minlevel="Debug" writeTo="c" />-->
14+
<logger name="*" minlevel="Debug" writeTo="c" />
1515
</rules>
1616
</nlog>

Diff for: src/InEngine/appsettings.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"InEngine": {
33
"Plugins": {
4+
//"InEngine.Commands": ""
45
},
56
"ExecWhitelist": {
67
},

0 commit comments

Comments
 (0)