Skip to content

Commit

Permalink
chore(version): bump v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rafi committed Sep 24, 2024
1 parent d83676e commit 60ddd0d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Gits test workflow

on:
push:
branches: ["master", "next"]
branches: ["master"]
pull_request:
branches: ["master", "next"]
branches: ["master"]

jobs:
test:
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
# Change-log

- - -
## v0.11.0 - 2024-09-24

### Bug Fixes

- **(repo)** use 'src' as remote - (4306ec4) - Rafael Bodill

### Miscellaneous Chores

- **(ci)** replace drone with git actions - (d83676e) - Rafael Bodill
- **(deps)** update vulnerable packages - (934de7d) - Rafael Bodill

### Performance Improvements

- clone, fetch and pull in parallel - (3452ff8) - Rafael Bodill

- - -

## [v0.10.0](https://github.com/rafi/gits/compare/v0.9.0...v0.10.0) / 2024-03-20

### Features
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/config/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (f File) findDefaultPath() (string, error) {
filepath.Join(xdgConfigHome, "gits", "config"),
}
for _, configPath := range configDirectories {
for _, configExt := range []string{".json", ".yaml", ".toml"} {
for _, configExt := range []string{".json", ".yaml", ".yml", ".toml"} {
if _, err := os.Stat(configPath + configExt); !os.IsNotExist(err) {
return configPath + configExt, nil
}
Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var (
//
// Increment major number for new feature additions and behavioral changes.
// Increment minor number for bug fixes and performance enhancements.
version = "v0.10.0"
version = "v0.11.0"

// metadata is extra build time data
metadata = ""
Expand Down

0 comments on commit 60ddd0d

Please sign in to comment.