Skip to content

Commit

Permalink
Bump to 1.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerfar committed Jan 30, 2022
1 parent 2e3192e commit 318657f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.11] - 2022-01-30
### Changed
- Fixed race condition where the job would be marked as completed while it's still setting up.

## [1.0.10] - 2022-01-10
### Changed
- Fixed issue with the timeout checker timing out a job that hasn't created tasks yet.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "datack",
"version": "1.0.10",
"version": "1.0.11",
"description": "Simple database backup tool.",
"main": "index.js",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/dotnet/Datack.Agent.Service/Datack.Agent.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>Datack.Agent</AssemblyName>
<RootNamespace>Datack.Agent</RootNamespace>
<Version>1.0.10</Version>
<Version>1.0.11</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/dotnet/Datack.Web.Web/Datack.Web.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net6.0</TargetFramework>
<OutputType>Exe</OutputType>
<UserSecretsId>94c24cba-f03f-4453-a671-3640b517c573</UserSecretsId>
<Version>1.0.10</Version>
<Version>1.0.11</Version>
<RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/react/src/pages/settings/SettingsOverview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const SettingsOverview: FC = () => {
<Heading size="md">Server Logging</Heading>
</Box>
<Box marginBottom={4}>
Server version <span id="version">1.0.10</span>
Server version <span id="version">1.0.11</span>
</Box>
<Box marginBottom={4}>
<SettingsSetting
Expand Down

0 comments on commit 318657f

Please sign in to comment.