Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerfar committed Jul 24, 2024
1 parent 7df7aa0 commit 227c4d1
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ 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.18] - 2023-11-07
## [1.0.19] - 2024-07-24
### Added
- Add task to restore a SQL Server database.
- Add task to download a S3 file.
- Add task to extract a 7z.

## [1.0.18] - 2024-07-23
### Changed
- Allow jobs to overlap, but don't start tasks that are still pending in other running tasks.

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.18",
"version": "1.0.19",
"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 @@ -6,7 +6,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<OutputType>Exe</OutputType>
<Version>1.0.18</Version>
<Version>1.0.19</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 @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<Version>1.0.18</Version>
<Version>1.0.19</Version>
</PropertyGroup>

<ItemGroup>
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.18</span>
Server version <span id="version">1.0.19</span>
</Box>
<Box marginBottom={4}>
<SettingsSetting
Expand Down

0 comments on commit 227c4d1

Please sign in to comment.