MSSQL loadable plugin
Source
37
37
http://www.apache.org/licenses/LICENSE-2.0
38
38
39
39
Unless required by applicable law or agreed to in writing, software
40
40
distributed under the License is distributed on an "AS IS" BASIS,
41
41
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
42
42
See the License for the specific language governing permissions and
43
43
limitations under the License.`
44
44
45
45
//nolint:gochecknoglobals,revive // required ALL_CAPS by build scripts
46
46
var (
47
-
PLUGIN_VERSION_RC = ""
47
+
PLUGIN_VERSION_RC = "rc1"
48
48
PLUGIN_VERSION_MAJOR = 6
49
49
PLUGIN_VERSION_MINOR = 0
50
-
PLUGIN_VERSION_PATCH = 35
50
+
PLUGIN_VERSION_PATCH = 36
51
51
PLUGIN_LICENSE_YEAR = 2023
52
52
)
53
53
54
54
func main() {
55
55
err := flag.HandleFlags(
56
56
plugin.Name,
57
57
os.Args[0],
58
58
fmt.Sprintf(copyrightMessage, PLUGIN_LICENSE_YEAR),
59
59
PLUGIN_VERSION_RC,
60
60
PLUGIN_VERSION_MAJOR,