Compare commits

..

5 Commits
0.11.1 ... main

Author SHA1 Message Date
964ea60e55 chore: bump 0.12.0 → 0.13.0 [CI SKIP]
All checks were successful
continuous-integration/drone/tag Build is passing
2024-10-25 16:16:43 +00:00
2386e278c7 Merge branch 'main' of https://gitea.dikurium.ch/InnoPeak/drone-gitea-release into main
Some checks failed
continuous-integration/drone/push Build is failing
2024-10-25 18:16:24 +02:00
66de41874d feat: use time.Time.Before() instead of Sub() 2024-10-25 18:16:24 +02:00
9aace7aa2b chore: bump 0.11.1 → 0.12.0 [CI SKIP]
All checks were successful
continuous-integration/drone/tag Build is passing
2024-10-25 16:14:51 +00:00
6c787535a8 feat: use tagger.when to find latest tag
Some checks failed
continuous-integration/drone/push Build is failing
2024-10-25 18:14:25 +02:00
3 changed files with 33 additions and 11 deletions

View File

@ -1,3 +1,15 @@
## 0.13.0 (2024-10-25)
### Feat
- :sparkles: use time.Time.Before() instead of Sub()
## 0.12.0 (2024-10-25)
### Feat
- :sparkles: use tagger.when to find latest tag
## 0.11.1 (2024-07-11)
### Fix

View File

@ -5,5 +5,5 @@ commitizen:
name: cz_conventional_commits
tag_format: $version
update_changelog_on_bump: true
version: 0.11.1
version: 0.13.0
version_scheme: semver

View File

@ -11,7 +11,7 @@ import (
"io"
"net/http"
"os"
"strings"
"time"
"github.com/go-git/go-git/v5"
"github.com/go-git/go-git/v5/plumbing/transport/client"
@ -62,28 +62,34 @@ func FetchTags() func(repo *git.Repository) error {
}
}
func getLatestGitTag(options ...GetLatestGitTagOption) (tag string, err error) {
r, err := git.PlainOpen(".")
func getLatestGitTag(options ...GetLatestGitTagOption) (string, error) {
var (
tag string
tagDate *time.Time
err error
)
repo, err := git.PlainOpen(".")
if err != nil {
return "", fmt.Errorf("error opening git repo at %s: %w", ".", err)
}
for _, opt := range options {
err := opt(r)
err := opt(repo)
if err != nil {
return "", err
}
}
tagRefs, err := r.Tags()
tags, err := repo.TagObjects()
if err != nil {
return "", fmt.Errorf("error getting git tag refs %w", err)
return "", fmt.Errorf("error getting git tags %w", err)
}
for {
r, err := tagRefs.Next()
t, err := tags.Next()
if err == io.EOF {
break
@ -93,15 +99,19 @@ func getLatestGitTag(options ...GetLatestGitTagOption) (tag string, err error) {
return "", fmt.Errorf("error iterating tags %w", err)
}
parts := strings.Split(string(r.Name()), "/")
tag = strings.Join(parts[2:], "/")
if tagDate != nil && t.Tagger.When.Before(*tagDate) {
continue
}
tagDate = &t.Tagger.When
tag = t.Name
}
if tag == "" {
return tag, fmt.Errorf("couldn't find any git tags")
}
return
return tag, err
}
func writeCard(path, schema string, card interface{}) {