Skip to content

Commit

Permalink
Release v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenetriguba committed Aug 18, 2024
1 parent d2186ed commit 07addf4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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).

## [0.10.0] - 2024-08-18

### Added

- Ability to customize the name of the database table that `bolt` creates for keeping track of applied migrations.

## [0.9.0] - 2024-08-10

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<a href="https://codecov.io/gh/eugenetriguba/bolt" >
<img src="https://codecov.io/gh/eugenetriguba/bolt/graph/badge.svg?token=y8ZwsjjSQ3"/>
</a>
<img alt="Version Badge" src="https://img.shields.io/badge/version-0.9.0-blue" style="max-width:100%;">
<img alt="Version Badge" src="https://img.shields.io/badge/version-0.10.0-blue" style="max-width:100%;">
</p>


Expand Down
2 changes: 1 addition & 1 deletion internal/commands/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func (cmd *VersionCmd) Execute(
_ ...interface{},
) subcommands.ExitStatus {
consoleOutputter := output.NewConsoleOutputter()
err := consoleOutputter.Output("bolt v0.9.0")
err := consoleOutputter.Output("bolt v0.10.0")
if err != nil {
consoleOutputter.Error(err)
return subcommands.ExitFailure
Expand Down

0 comments on commit 07addf4

Please sign in to comment.