From 82935ae6b2d413322b18a9b487973e5ab04e6efd Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sun, 1 Dec 2024 15:10:55 -0600 Subject: attempt to detect new package dependancy versions --- currentVersions.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'currentVersions.go') diff --git a/currentVersions.go b/currentVersions.go index 4cbaa72..d5a2212 100644 --- a/currentVersions.go +++ b/currentVersions.go @@ -35,7 +35,7 @@ func (repo *Repo) GetLastTag() string { return result.Stdout[0] } -func (repo *Repo) GitMasterVersion() string { +func (repo *Repo) GetMasterVersion() string { bname := repo.GetMasterBranchName() v, err := repo.gitVersionByName(bname) /* @@ -54,7 +54,7 @@ func (repo *Repo) GitMasterVersion() string { } } -func (repo *Repo) GitDevelVersion() string { +func (repo *Repo) GetDevelVersion() string { bname := repo.GetDevelBranchName() v, err := repo.gitVersionByName(bname) if err == nil { @@ -65,7 +65,7 @@ func (repo *Repo) GitDevelVersion() string { } } -func (repo *Repo) GitUserVersion() string { +func (repo *Repo) GetUserVersion() string { bname := repo.GetUserBranchName() if bname != "jcarr" { panic("not jcarr bname =" + bname) -- cgit v1.2.3