From a70dfc28f7e825163d2d8e86c9a320f93c27d482 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20Schr=C3=B6der?= Date: Tue, 13 Jun 2023 07:35:15 +0200 Subject: [PATCH] Clarify supported go versions, retract broken versions --- README.md | 15 +++------------ go.mod | 5 +++++ 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 02be8c3d..aa6a86d4 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ A native Go implementation of the OPC/UA Binary Protocol. -You need go1.13 or higher. We test with the current and previous Go version. +We support the current and previous major Go release. See below for a list of [Tested Platforms](#tested-platforms) and [Supported Features](#supported-features). [![GitHub](https://github.com/gopcua/opcua/workflows/gopuca/badge.svg)](https://github.com/gopcua/opcua/actions) @@ -20,16 +20,9 @@ See below for a list of [Tested Platforms](#tested-platforms) and [Supported Fea [![License](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/gopcua/opcua/blob/master/LICENSE) [![Version](https://img.shields.io/github/tag/gopcua/opcua.svg?color=blue&label=version)](https://github.com/gopcua/opcua/releases) -## Note - -`v0.2.4` and `v0.2.5` are broken and should not be used. Please upgrade to `v0.2.6` or later. -See [#538](https://github.com/gopcua/opcua/issues/538) for details. - ## Quickstart ```sh -# make sure you have go1.17 or higher - # install library go get -u github.com/gopcua/opcua @@ -95,11 +88,9 @@ We would also like to list organizations which use `gopcua` in production. Pleas We are still actively working on this project and the APIs will change. -We have started to tag the code to support go modules and reproducible builds -but there is still no guarantee of API stability. - However, you can safely assume that we are aiming to make the APIs as -stable as possible. :) +stable as possible since the code is in use in several large scale +production environments. The [Current State](https://github.com/gopcua/opcua/wiki/Current-State) was moved to the [Wiki](https://github.com/gopcua/opcua/wiki). diff --git a/go.mod b/go.mod index eaea9cdb..699fe089 100644 --- a/go.mod +++ b/go.mod @@ -12,3 +12,8 @@ require ( golang.org/x/sys v0.6.0 // indirect golang.org/x/term v0.6.0 // indirect ) + +retract ( + v0.2.5 // https://github.com/gopcua/opcua/issues/538 + v0.2.4 // https://github.com/gopcua/opcua/issues/538 +)