Skip to content

Commit

Permalink
Merge branch 'v5.6.1' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverbooth committed Jul 24, 2023
2 parents 025e005 + 4718c8a commit f32afd3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ 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).

## [5.6.1] - 2023-07-24

### Added
- Added link to the bot source code in the `/info` command.

## [5.6.0] - 2023-07-22

### Added
Expand Down Expand Up @@ -428,6 +433,11 @@ No substantial changes. Commit 3b8259a6cfb82ec0f5f51804c1ac7f1f5880d014 fixed an

- Hammer is released.

[5.6.1]: https://github.com/BrackeysBot/Hammer/releases/tag/v5.6.1
[5.6.0]: https://github.com/BrackeysBot/Hammer/releases/tag/v5.6.0
[5.5.2]: https://github.com/BrackeysBot/Hammer/releases/tag/v5.5.2
[5.5.1]: https://github.com/BrackeysBot/Hammer/releases/tag/v5.5.1
[5.5.0]: https://github.com/BrackeysBot/Hammer/releases/tag/v5.5.0
[5.4.3]: https://github.com/BrackeysBot/Hammer/releases/tag/v5.4.3
[5.4.2]: https://github.com/BrackeysBot/Hammer/releases/tag/v5.4.2
[5.4.1]: https://github.com/BrackeysBot/Hammer/releases/tag/v5.4.1
Expand Down
1 change: 1 addition & 0 deletions Hammer/Commands/InfoCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ public async Task InfoAsync(InteractionContext context)
embed.WithTitle($"Hammer v{hammerVersion}");
embed.AddField("Ping", client.Ping, true);
embed.AddField("Uptime", (DateTimeOffset.UtcNow - _botService.StartedAt).Humanize(), true);
embed.AddField("Source", "[View on GitHub](https://github.com/BrackeysBot/Hammer/)", true);

var builder = new StringBuilder();
builder.AppendLine($"Hammer: {hammerVersion}");
Expand Down
2 changes: 1 addition & 1 deletion Hammer/Hammer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<VersionPrefix>5.6.0</VersionPrefix>
<VersionPrefix>5.6.1</VersionPrefix>
</PropertyGroup>

<PropertyGroup Condition="'$(VersionSuffix)' != '' And '$(BuildNumber)' == ''">
Expand Down

0 comments on commit f32afd3

Please sign in to comment.