Skip to content

Commit

Permalink
chore: bump version to v0.17.0 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanlogue committed Feb 6, 2024
1 parent d33fd26 commit b1dfbee
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ 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).

## Unreleased

## [v0.17.0](https://github.com/stefanlogue/meteor/releases/tag/v0.17.0) - 2024-02-06
### Fixed
- Replace `clipboard` package causing panic in published tool

Expand Down
13 changes: 13 additions & 0 deletions git_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package main

import "testing"

func TestBuildCommitCommand(t *testing.T) {
msg := "test"
body := "test body"
expected := "commit -m test test body"
got := buildCommitCommand(msg, body)
if got != expected {
t.Errorf("expected %s, got %s", expected, got)
}
}

0 comments on commit b1dfbee

Please sign in to comment.