Skip to content

Commit

Permalink
Bump version and prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanhann committed Dec 16, 2017
1 parent a374aaa commit c8a49b4
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions docs-src/server.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ Install [Docker](https://www.docker.com/what-docker) first, then pull the **etha
docker pull ethanhann/inengine:latest
```

Now run the InEngine in server mode:
Now run InEngine in server mode:

```bash
docker run --rm ethanhann/inengine -s
docker run --rm -i ethanhann/inengine:latest -s
```
4 changes: 2 additions & 2 deletions src/InEngine.Commands/InEngine.Commands.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<TargetFrameworks>net47;net462;net461</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<Version>3.5.0</Version>
<FileVersion>3.5.0</FileVersion>
<Version>4.0.0</Version>
<FileVersion>4.0.0</FileVersion>
<Authors>Ethan Hann</Authors>
<Description>Plugin-based queuing and scheduling command server.</Description>
<Copyright>Copyright © 2017 Ethan Hann</Copyright>
Expand Down
4 changes: 2 additions & 2 deletions src/InEngine.Core.Test/InEngine.Core.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
</PropertyGroup>

<PropertyGroup>
<Version>3.5.0</Version>
<FileVersion>3.5.0</FileVersion>
<Version>4.0.0</Version>
<FileVersion>4.0.0</FileVersion>
<Authors>Ethan Hann</Authors>
<Description>Plugin-based queuing and scheduling command server.</Description>
<Copyright>Copyright © 2017 Ethan Hann</Copyright>
Expand Down
6 changes: 3 additions & 3 deletions src/InEngine.Core/InEngine.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<TargetFrameworks>net47;net462;net461</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<Version>3.5.0</Version>
<FileVersion>3.5.0</FileVersion>
<Version>4.0.0</Version>
<FileVersion>4.0.0</FileVersion>
<Authors>Ethan Hann</Authors>
<Description>Plugin-based queuing and scheduling command server.</Description>
<Copyright>Copyright © 2017 Ethan Hann</Copyright>
<PackageId>InEngine.Core</PackageId>
<PackageVersion>3.5.0</PackageVersion>
<PackageVersion>4.0.0</PackageVersion>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageTags>Integration Scheduler Queue Server Quartz.NET Redis</PackageTags>
<PackageLicenseUrl>https://github.com/InEngine-NET/InEngine.NET/blob/master/LICENSE</PackageLicenseUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/InEngine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ FROM mono:latest
WORKDIR /inengine
ADD . /inengine

ENTRYPOINT ["mono", "./InEngine.exe", "-s"]
ENTRYPOINT ["mono", "./InEngine.exe"]
4 changes: 2 additions & 2 deletions src/InEngine/InEngine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
</PropertyGroup>

<PropertyGroup>
<Version>3.5.0</Version>
<FileVersion>3.5.0</FileVersion>
<Version>4.0.0</Version>
<FileVersion>4.0.0</FileVersion>
<Authors>Ethan Hann</Authors>
<Description>Plugin-based queuing and scheduling command server.</Description>
<Copyright>Copyright © 2017 Ethan Hann</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion src/InEngine/NLog.config
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
</targets>

<rules>
<logger name="*" minlevel="Debug" writeTo="c" />
<!-- <logger name="*" minlevel="Debug" writeTo="c" />-->
</rules>
</nlog>

0 comments on commit c8a49b4

Please sign in to comment.