From 6621e2d59bb4b19126f96250b73d57b6214544c7 Mon Sep 17 00:00:00 2001 From: Ryan Hang Date: Tue, 14 Apr 2020 20:52:33 -0700 Subject: [PATCH] Drop dependency on golang.org/x/lint We use golang.org/x/lint for dev-time tooling only. We don't need to declare constraints on versions of these libraries that our users use. related: https://github.com/uber-go/multierr/issues/35 --- CHANGELOG.md | 3 ++- tools.go => tools_test.go | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename tools.go => tools_test.go (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04a08ab..012d5ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] -- No changes yet. +### Changed +- Drop library dependency on `golang.org/x/lint`. ## [1.4.0] - 2019-11-19 ### Changed diff --git a/tools.go b/tools_test.go similarity index 100% rename from tools.go rename to tools_test.go