From aa2e423aa885266d554b74f57f36d58176603c18 Mon Sep 17 00:00:00 2001 From: Niklas Date: Fri, 8 Oct 2021 17:30:39 +0200 Subject: [PATCH] build: drop support for go 1.14 (#11) Signed-off-by: nscuro Closes #10 --- .github/workflows/ci.yml | 1 - README.md | 3 ++- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd3acd2..ef530de 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,6 @@ jobs: strategy: matrix: go: - - "^1.14" - "^1.15" - "^1.16" - "^1.17" diff --git a/README.md b/README.md index 46701bc..d51f7e0 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,8 @@ Also, checkout the [`examples`](./example_test.go) to get an idea of how this li | cyclonedx-go versions | Supported Go versions | Supported CycloneDX spec | |:---------------------:|:---------------------:|:------------------------:| | < v0.4.0 | 1.14+ | 1.2 | -| >= v0.4.0 | 1.14+ | 1.3 | +| == v0.4.0 | 1.14+ | 1.3 | +| >= v0.5.0 | 1.15+ | 1.3 | We're aiming to support all [officially supported](https://golang.org/doc/devel/release.html#policy) Go versions, plus an additional older version. diff --git a/go.mod b/go.mod index 2122d06..797e0fc 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/CycloneDX/cyclonedx-go -go 1.14 +go 1.15 require ( github.com/bradleyjkemp/cupaloy/v2 v2.6.0