This commit is contained in:
Alexander Wang 2024-04-17 19:48:55 -07:00
parent d1052f476c
commit 79ce3d16e8
No known key found for this signature in database
GPG key ID: BE3937D0D52D8927
2 changed files with 2 additions and 4 deletions

View file

@ -1,6 +1,4 @@
#### Features 🚀
#### Improvements 🧹
Hotfix for 0.6.4 breaking plugins, along with 2 other compiler bugfixes.
#### Bugfixes ⛑️

View file

@ -3,7 +3,7 @@ package version
import "regexp"
// Pre-built binaries will have version set correctly during build time.
var Version = "v0.6.4-HEAD"
var Version = "v0.6.5-HEAD"
func OnlyNumbers() string {
re, err := regexp.Compile("[0-9]+.[0-9]+.[0-9]+")