Skip to content

Commit

Permalink
Merge pull request #478 from hashicorp/kisunji/retract1.13
Browse files Browse the repository at this point in the history
Add retract directive for v1.1.3
  • Loading branch information
kisunji committed Apr 29, 2022
2 parents 44124c2 + a11b211 commit 5157c19
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
13 changes: 9 additions & 4 deletions .circleci/config.yml
Expand Up @@ -4,9 +4,6 @@ workflows:
ci:
jobs:
- lint
- go-test:
name: test go1.15
version: "1.15"
- go-test:
name: test go1.16
version: "1.16"
Expand All @@ -15,6 +12,14 @@ workflows:
version: "1.16"
goarch: "386"
args: "" # remove -race
- go-test:
name: test go1.17
version: "1.17"
- go-test:
name: test go1.17 32bit
version: "1.17"
goarch: "386"
args: "" # remove -race

executors:
golang:
Expand All @@ -37,7 +42,7 @@ jobs:
lint:
executor:
name: golang
version: "1.16"
version: "1.17"
steps:
- checkout
- run: go mod download
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -12,7 +12,7 @@ fault tolerance as well.

## Building

If you wish to build raft you'll need Go version 1.2+ installed.
If you wish to build raft you'll need Go version 1.16+ installed.

Please check your installation with:

Expand Down
4 changes: 3 additions & 1 deletion go.mod
@@ -1,6 +1,8 @@
module github.com/hashicorp/raft

go 1.12
go 1.16

retract v1.1.3 // Deleted original tag; module checksum may not be accurate.

require (
github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878
Expand Down
1 change: 1 addition & 0 deletions testing_batch.go
@@ -1,3 +1,4 @@
//go:build batchtest
// +build batchtest

package raft
Expand Down

0 comments on commit 5157c19

Please sign in to comment.