Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add retract directive for v1.1.3 #478

Merged
merged 4 commits into from Apr 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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