Skip to content

Commit

Permalink
Merge pull request #133 from nightingaleproject/132-create-new-offici…
Browse files Browse the repository at this point in the history
…al-version-of-canary-release

upped release to 4.0.1
  • Loading branch information
johnarleyburns committed May 16, 2023
2 parents 04925bf + 9d039cc commit 262c679
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Change Log

### 4.0.1

* Updated the VRDR .NET library dependency for the project to use [4.0.1](https://github.com/nightingaleproject/vrdr-dotnet/releases/tag/4.0.1)


### v4.0.0-preview11

* Updated the VRDR .NET library dependency for the project to use [V4.0.0-preview21](https://github.com/nightingaleproject/vrdr-dotnet/releases/tag/v4.0.0-preview21)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ docker run --rm -p 8080:80 mitre/canary:latest
These commands will pull the latest version of Canary from Docker Hub, and run it. You can access it from a web browser at [http://localhost:8080](http://localhost:8080). To run a specific version, simply append the version to the `docker run` command above. You can see all versions of Canary that are available to run from DockerHub [here](https://hub.docker.com/r/mitre/canary/tags). For example:

```
docker run --rm -p 8080:80 mitre/canary:v4.0.0-preview11
docker run --rm -p 8080:80 mitre/canary:v4.0.1
```

If you want to build a Dockerized Canary from scratch (from source), you can do so by running (inside the project root directory):
Expand Down
4 changes: 2 additions & 2 deletions canary/ClientApp/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ const baseUrl = document.getElementsByTagName('base')[0].getAttribute('href');

//window.API_URL = 'http://localhost:5000';
window.API_URL = '';
window.VERSION = 'v4.0.0-preview11';
window.VERSION_DATE = 'April 20th, 2023';
window.VERSION = '4.0.1';
window.VERSION_DATE = 'May 16th, 2023';

const container = document.getElementById('root');
const root = createRoot(container);
Expand Down
2 changes: 1 addition & 1 deletion canary/canary.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.5" />
<PackageReference Include="Bogus" Version="34.0.2" />

<PackageReference Include="VRDR.Messaging" Version="4.0.0-preview21" />
<PackageReference Include="VRDR.Messaging" Version="4.0.1" />

<!-- <ProjectReference Include="..\..\vrdr-dotnet\VRDR\DeathRecord.csproj" /> -->
<!-- <ProjectReference Include="..\..\vrdr-dotnet\VRDR.Messaging\VRDRMessaging.csproj" /> -->
Expand Down

0 comments on commit 262c679

Please sign in to comment.