kevincobain2000 / gobrew

Go version manager, written in Go. Super simple tool to install and manage Go versions. Install go without root. Gobrew doesn't require shell rehash.
https://medium.com/web-developer/go-version-manager-gobrew-c8750157dfe6
MIT License
369 stars 24 forks source link

pick the latest in order for `dev-latest` #180

Closed kevincobain2000 closed 7 months ago

kevincobain2000 commented 7 months ago

Fixes #179

Semantic ordering is

[]string{
  "1.22rc1",
  "1.22rc2",
  "1.22.0",
}

I wonder if it ever worked actually. It had been there since the beginning.

github-actions[bot] commented 7 months ago

CoverItUp Report

TYPE MASTER FEATURE/DEV-VERSION
coverage 60.5% 60.5%
build-time 3sec 3sec
go-binary-size 6.1kKB 6.1kKB
go-mod-dependencies 29 29
go-sec-issues 6 6
unit-test-run-time 18sec 18sec

chartchartchartchartchartchart

Add Badges and Charts to Readme

github-actions[bot] commented 7 months ago

CoverItUp Report

TYPE MASTER FEATURE/DEV-VERSION
coverage 60.5% 59.2%-

chart

Add Badges and Charts to Readme

juev commented 7 months ago

I wonder if it ever worked actually. It had been there since the beginning.

I was aware of this problem, but I've never used specifying a dev version myself. I explicitly specify the version that is required.

juev commented 7 months ago

Can you describe in words the algorithm for creating and using dev versions?