mirror of
https://github.com/metabarcoding/obitools4.git
synced 2026-04-30 12:00:39 +00:00
960ad1531d
- Improved concurrency safety by replacing the global HTTP client with a thread-safe, lazy-initialized instance using `sync.Once`. The new implementation enables connection pooling (`MaxIdleConnsPerHost`, connections per host) and dynamically configures pool size based on `obidefault.ParallelWorkers()`, ensuring robust behavior in multi-threaded Lua environments. - Updated GitHub Actions workflows to the latest stable versions of `actions/setup-go` and ` actions/checkout`, improving build reliability. - Removed outdated Go dependency checksums for buger/jsonparser v1.1.x to keep the build clean and consistent.
15 lines
399 B
Go
15 lines
399 B
Go
package obioptions
|
|
|
|
// Version is automatically updated by the Makefile from version.txt
|
|
// The patch number (third digit) is incremented on each push to the repository
|
|
|
|
var _Version = "Release 4.4.34"
|
|
|
|
// Version returns the version of the obitools package.
|
|
//
|
|
// No parameters.
|
|
// Returns a string representing the version of the obitools package.
|
|
func VersionString() string {
|
|
return _Version
|
|
}
|