From 3ab7b3848c9ab6ec0a20fe160a9b8e5e90b360c5 Mon Sep 17 00:00:00 2001 From: psampaz Date: Thu, 27 Feb 2020 06:57:58 +0200 Subject: [PATCH] update ci.yml for go 1.14 (#29) * update ci.yml for go 1.14 * Update CHANGELOG.md * Update CHANGELOG.md * Update CHANGELOG.md * Update ci.yml --- .github/workflows/ci.yml | 6 +++--- CHANGELOG.md | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 470e184..83fe103 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: tests: strategy: matrix: - go-version: [1.11.x, 1.12.x, 1.13.x] + go-version: [1.11.x, 1.12.x, 1.13.x, 1.14.x] platform: [ubuntu-latest, macos-latest, windows-latest] name: tests runs-on: ${{ matrix.platform }} @@ -21,7 +21,7 @@ jobs: coverage: strategy: matrix: - go-version: [1.13.x] + go-version: [1.14.x] platform: [ubuntu-latest] name: coverage runs-on: ${{ matrix.platform }} @@ -35,7 +35,7 @@ jobs: - run: | go test -v -race -cover -coverprofile=coverage.txt -covermode=atomic ./... - name: Upload coverage to Codecov - uses: codecov/codecov-action@v1.0.4 + uses: codecov/codecov-action@v1.0.5 with: token: ${{secrets.CODECOV_TOKEN}} file: ./coverage.txt diff --git a/CHANGELOG.md b/CHANGELOG.md index 58e4fcc..51608b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,12 +3,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) -## [vX.X.X] UNRELEASED +## [v0.2.0] 2020-02-27 ### Added - Delete operation - DeleteRange operation - Pop operation - Shuffle operation +- Tests on Go 1.14 ## [v0.1.0] 2019-12-03 ### Added