You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Copyright (c) 2023, the WebKit for Windows project authors. Please see the
// AUTHORS file for details. All rights reserved. Use of this source code is
// governed by a BSD-style license that can be found in the LICENSE file.
package reqcheck
import (
"fmt"
"regexp"
"strings"
"github.com/Masterminds/semver"
"github.com/sirupsen/logrus"
)
var versionMatcher = regexp.MustCompile(`^[a-zA-Z-_.]*(?P<major>\d+)[._-](?P<minor>\d*)[._-]*(?P<patch>\d*)[._-]*(?P<prerelease>[a-zA-Z-_.]*)(?P<preversion>\d*)$`)