Skip to content

Commit

Permalink
added v0.1.1 release notes (#30) (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaronontheweb authored May 31, 2019
1 parent 2130fe9 commit 3afd34a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### 0.1.1 May 31 2019 ####
*Reorganized trader and trade-processor Dockerfiles to comport with Docker best practices.

#### 0.1.0 May 26 2019 ####
* Fixed `NullReferenceException` when recovering `MatchAggregatorSnapshot` records with no price and volume updates.
* Fixed issue with BSON serialization for `MatchAggregatorSnapshot` records.
4 changes: 2 additions & 2 deletions src/Akka.CQRS.TradePlacers.Service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ ENV CLUSTER_SEEDS "[]"
ENV CLUSTER_IP ""
ENV CLUSTER_PORT "5054"

COPY ./bin/Release/netcoreapp2.1/publish/ /app

# 9110 - Petabridge.Cmd
# 5055 - Akka.Cluster
EXPOSE 9110 5054
Expand All @@ -20,4 +18,6 @@ ENV PATH="${PATH}:/root/.dotnet/tools"

# RUN pbm help

COPY ./bin/Release/netcoreapp2.1/publish/ /app

CMD ["dotnet", "Akka.CQRS.TradePlacers.Service.dll"]
4 changes: 1 addition & 3 deletions src/Akka.CQRS.TradeProcessor.Service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ ENV CLUSTER_IP ""
ENV CLUSTER_PORT "5055"
ENV MONGO_CONNECTION_STR "" #MongoDb connection string for Akka.Persistence

COPY ./bin/Release/netcoreapp2.1/publish/ /app

# 9110 - Petabridge.Cmd
# 5055 - Akka.Cluster
EXPOSE 9110 5055
Expand All @@ -19,6 +17,6 @@ RUN dotnet tool install --global pbm
# Needed because https://stackoverflow.com/questions/51977474/install-dotnet-core-tool-dockerfile
ENV PATH="${PATH}:/root/.dotnet/tools"

# RUN pbm help
COPY ./bin/Release/netcoreapp2.1/publish/ /app

CMD ["dotnet", "Akka.CQRS.TradeProcessor.Service.dll"]
5 changes: 2 additions & 3 deletions src/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
<PropertyGroup>
<Copyright>Copyright © 2017 Your Company</Copyright>
<Authors>Your Authors</Authors>
<VersionPrefix>0.1.0</VersionPrefix>
<PackageReleaseNotes>Fixed `NullReferenceException` when recovering `MatchAggregatorSnapshot` records with no price and volume updates.
Fixed issue with BSON serialization for `MatchAggregatorSnapshot` records.</PackageReleaseNotes>
<VersionPrefix>0.1.1</VersionPrefix>
<PackageReleaseNotes>Reorganized trader and trade-processor Dockerfiles to comport with Docker best practices.</PackageReleaseNotes>
<PackageIconUrl>
</PackageIconUrl>
<PackageProjectUrl>
Expand Down

0 comments on commit 3afd34a

Please sign in to comment.