chore: ⬆️ updated deps

This commit is contained in:
2026-05-20 22:52:20 +02:00
parent d9f27c1775
commit 43f4680176
374 changed files with 295527 additions and 301467 deletions
+8 -5
View File
@@ -1,15 +1,18 @@
package mssql
import "fmt"
import (
"fmt"
"strings"
)
// Update this variable with the release tag before pushing the tag
// This value is written to the prelogin and login7 packets during a new connection
const driverVersion = "v1.9.6"
// This value is automatically updated by Release Please during the release process.
// It is written to the prelogin and login7 packets during a new connection.
const driverVersion = "v1.10.0" // x-release-please-version
func getDriverVersion(ver string) uint32 {
var majorVersion uint32
var minorVersion uint32
var rev uint32
_, _ = fmt.Sscanf(ver, "v%d.%d.%d", &majorVersion, &minorVersion, &rev)
_, _ = fmt.Sscanf(strings.TrimPrefix(ver, "v"), "%d.%d.%d", &majorVersion, &minorVersion, &rev)
return (majorVersion << 24) | (minorVersion << 16) | rev
}