Skip to content

Commit c8a49b4

Browse files
committed
Bump version and prepare for release
1 parent a374aaa commit c8a49b4

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

Diff for: docs-src/server.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ Install [Docker](https://www.docker.com/what-docker) first, then pull the **etha
120120
docker pull ethanhann/inengine:latest
121121
```
122122

123-
Now run the InEngine in server mode:
123+
Now run InEngine in server mode:
124124

125125
```bash
126-
docker run --rm ethanhann/inengine -s
126+
docker run --rm -i ethanhann/inengine:latest -s
127127
```

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<TargetFrameworks>net47;net462;net461</TargetFrameworks>
44
</PropertyGroup>
55
<PropertyGroup>
6-
<Version>3.5.0</Version>
7-
<FileVersion>3.5.0</FileVersion>
6+
<Version>4.0.0</Version>
7+
<FileVersion>4.0.0</FileVersion>
88
<Authors>Ethan Hann</Authors>
99
<Description>Plugin-based queuing and scheduling command server.</Description>
1010
<Copyright>Copyright © 2017 Ethan Hann</Copyright>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
</PropertyGroup>
66

77
<PropertyGroup>
8-
<Version>3.5.0</Version>
9-
<FileVersion>3.5.0</FileVersion>
8+
<Version>4.0.0</Version>
9+
<FileVersion>4.0.0</FileVersion>
1010
<Authors>Ethan Hann</Authors>
1111
<Description>Plugin-based queuing and scheduling command server.</Description>
1212
<Copyright>Copyright © 2017 Ethan Hann</Copyright>

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>3.5.0</Version>
7-
<FileVersion>3.5.0</FileVersion>
6+
<Version>4.0.0</Version>
7+
<FileVersion>4.0.0</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>3.5.0</PackageVersion>
12+
<PackageVersion>4.0.0</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/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ FROM mono:latest
33
WORKDIR /inengine
44
ADD . /inengine
55

6-
ENTRYPOINT ["mono", "./InEngine.exe", "-s"]
6+
ENTRYPOINT ["mono", "./InEngine.exe"]

Diff for: src/InEngine/InEngine.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
</PropertyGroup>
66

77
<PropertyGroup>
8-
<Version>3.5.0</Version>
9-
<FileVersion>3.5.0</FileVersion>
8+
<Version>4.0.0</Version>
9+
<FileVersion>4.0.0</FileVersion>
1010
<Authors>Ethan Hann</Authors>
1111
<Description>Plugin-based queuing and scheduling command server.</Description>
1212
<Copyright>Copyright © 2017 Ethan Hann</Copyright>

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>

0 commit comments

Comments
 (0)