Skip to content

Commit 4f6bb22

Browse files
committedJun 28, 2023
feat!: v9
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
1 parent 0f07b7f commit 4f6bb22

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed
 

‎README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Build Status](https://img.shields.io/github/actions/workflow/status/caarlos0/env/build.yml?branch=main&style=for-the-badge)](https://github.com/caarlos0/env/actions?workflow=build)
44
[![Coverage Status](https://img.shields.io/codecov/c/gh/caarlos0/env.svg?logo=codecov&style=for-the-badge)](https://codecov.io/gh/caarlos0/env)
5-
[![](http://img.shields.io/badge/godoc-reference-5272B4.svg?style=for-the-badge)](https://pkg.go.dev/github.com/caarlos0/env/v8)
5+
[![](http://img.shields.io/badge/godoc-reference-5272B4.svg?style=for-the-badge)](https://pkg.go.dev/github.com/caarlos0/env/v9)
66

77
A simple and zero-dependencies library to parse environment variables into
88
`struct`s.
@@ -12,7 +12,7 @@ A simple and zero-dependencies library to parse environment variables into
1212
Get the module with:
1313

1414
```sh
15-
go get github.com/caarlos0/env/v8
15+
go get github.com/caarlos0/env/v9
1616
```
1717

1818
The usage looks like this:
@@ -24,7 +24,7 @@ import (
2424
"fmt"
2525
"time"
2626

27-
"github.com/caarlos0/env/v8"
27+
"github.com/caarlos0/env/v9"
2828
)
2929

3030
type config struct {
@@ -115,7 +115,7 @@ field.
115115
If you add a custom parser for, say `Foo`, it will also be used to parse
116116
`*Foo` and `[]Foo` types.
117117

118-
Check the examples in the [go doc](http://pkg.go.dev/github.com/caarlos0/env/v8)
118+
Check the examples in the [go doc](http://pkg.go.dev/github.com/caarlos0/env/v9)
119119
for more info.
120120

121121
### A note about `TextUnmarshaler` and `time.Time`
@@ -218,7 +218,7 @@ package main
218218
import (
219219
"fmt"
220220
"time"
221-
"github.com/caarlos0/env/v8"
221+
"github.com/caarlos0/env/v9"
222222
)
223223

224224
type config struct {
@@ -266,7 +266,7 @@ import (
266266
"fmt"
267267
"log"
268268

269-
"github.com/caarlos0/env/v8"
269+
"github.com/caarlos0/env/v9"
270270
)
271271

272272
type Config struct {
@@ -306,7 +306,7 @@ import (
306306
"fmt"
307307
"log"
308308

309-
"github.com/caarlos0/env/v8"
309+
"github.com/caarlos0/env/v9"
310310
)
311311

312312
type Config struct {
@@ -343,7 +343,7 @@ import (
343343
"fmt"
344344
"log"
345345

346-
"github.com/caarlos0/env/v8"
346+
"github.com/caarlos0/env/v9"
347347
)
348348

349349
type Config struct {
@@ -377,7 +377,7 @@ import (
377377
"fmt"
378378
"log"
379379

380-
"github.com/caarlos0/env/v8"
380+
"github.com/caarlos0/env/v9"
381381
)
382382

383383
type Config struct {
@@ -426,7 +426,7 @@ import (
426426
"fmt"
427427
"log"
428428

429-
"github.com/caarlos0/env/v8"
429+
"github.com/caarlos0/env/v9"
430430
)
431431

432432
type Config struct {
@@ -466,7 +466,7 @@ import (
466466
"fmt"
467467
"log"
468468

469-
"github.com/caarlos0/env/v8"
469+
"github.com/caarlos0/env/v9"
470470
)
471471

472472
type Config struct {
@@ -502,7 +502,7 @@ import (
502502
"fmt"
503503
"log"
504504

505-
"github.com/caarlos0/env/v8"
505+
"github.com/caarlos0/env/v9"
506506
)
507507

508508
type Config struct {
@@ -535,7 +535,7 @@ import (
535535
"fmt"
536536
"log"
537537

538-
"github.com/caarlos0/env/v8"
538+
"github.com/caarlos0/env/v9"
539539
)
540540

541541
type Config struct {

‎go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/caarlos0/env/v8
1+
module github.com/caarlos0/env/v9
22

33
go 1.17

0 commit comments

Comments
 (0)
Please sign in to comment.