From 10d97665bdc67e5ea60ab210c3e14387ec576931 Mon Sep 17 00:00:00 2001 From: Vera Harless <53271741+morningvera@users.noreply.github.com> Date: Sun, 17 Apr 2022 14:03:26 -0400 Subject: [PATCH] chore: clean up examples --- LICENSE | 2 +- benchmark/go.mod | 2 +- benchmark/go.sum | 4 ++-- examples/go.mod | 6 ++++-- examples/go.sum | 5 ++--- 5 files changed, 10 insertions(+), 9 deletions(-) diff --git a/LICENSE b/LICENSE index 0a3a276..6b12b54 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 rotisserie +Copyright (c) 2022 rotisserie Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/benchmark/go.mod b/benchmark/go.mod index 40c028b..c63bafa 100644 --- a/benchmark/go.mod +++ b/benchmark/go.mod @@ -4,5 +4,5 @@ go 1.17 require ( github.com/pkg/errors v0.9.1 - github.com/rotisserie/eris v0.5.1 + github.com/rotisserie/eris v0.5.3 ) diff --git a/benchmark/go.sum b/benchmark/go.sum index e6eafbf..30d761d 100644 --- a/benchmark/go.sum +++ b/benchmark/go.sum @@ -1,4 +1,4 @@ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/rotisserie/eris v0.5.1 h1:SbzZloAUjoKX0eiQW187wop45Q5740Pz212NlIz5mLs= -github.com/rotisserie/eris v0.5.1/go.mod h1:JmkIDhvuvDk1kDFGe5RZ3LXIrkEGEN0E6HskH5BCehE= +github.com/rotisserie/eris v0.5.3 h1:redkFTy9/0B6JFTTJvQSRrOUcDV48q4zOCWgAatjBiw= +github.com/rotisserie/eris v0.5.3/go.mod h1:Z/kgYTJiJtocxCbFfvRmO+QejApzG6zpyky9G1A4g9s= diff --git a/examples/go.mod b/examples/go.mod index a564bb5..98975ae 100644 --- a/examples/go.mod +++ b/examples/go.mod @@ -1,10 +1,12 @@ module github.com/rotisserie/eris/examples -go 1.14 +go 1.17 require ( github.com/getsentry/sentry-go v0.12.0 github.com/pkg/errors v0.9.1 - github.com/rotisserie/eris v0.5.1 + github.com/rotisserie/eris v0.5.3 github.com/sirupsen/logrus v1.8.1 ) + +require golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac // indirect diff --git a/examples/go.sum b/examples/go.sum index 8a0bb1e..5a3c16e 100644 --- a/examples/go.sum +++ b/examples/go.sum @@ -106,8 +106,8 @@ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/rotisserie/eris v0.5.1 h1:SbzZloAUjoKX0eiQW187wop45Q5740Pz212NlIz5mLs= -github.com/rotisserie/eris v0.5.1/go.mod h1:JmkIDhvuvDk1kDFGe5RZ3LXIrkEGEN0E6HskH5BCehE= +github.com/rotisserie/eris v0.5.3 h1:redkFTy9/0B6JFTTJvQSRrOUcDV48q4zOCWgAatjBiw= +github.com/rotisserie/eris v0.5.3/go.mod h1:Z/kgYTJiJtocxCbFfvRmO+QejApzG6zpyky9G1A4g9s= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= github.com/ryanuber/columnize v2.1.0+incompatible/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= github.com/schollz/closestmatch v2.1.0+incompatible/go.mod h1:RtP1ddjLong6gTkbtmuhtR2uUrrJOpYzYRvbcPAid+g= @@ -199,7 +199,6 @@ golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3 golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/go-playground/assert.v1 v1.2.1/go.mod h1:9RXL0bg/zibRAgZUYszZSwO/z8Y/a8bDuhia5mkpMnE=