Skip to content

Commit

Permalink
feat!: v9
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
  • Loading branch information
caarlos0 committed Jun 28, 2023
1 parent 0f07b7f commit 4f6bb22
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![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)
[![Coverage Status](https://img.shields.io/codecov/c/gh/caarlos0/env.svg?logo=codecov&style=for-the-badge)](https://codecov.io/gh/caarlos0/env)
[![](http://img.shields.io/badge/godoc-reference-5272B4.svg?style=for-the-badge)](https://pkg.go.dev/github.com/caarlos0/env/v8)
[![](http://img.shields.io/badge/godoc-reference-5272B4.svg?style=for-the-badge)](https://pkg.go.dev/github.com/caarlos0/env/v9)

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

```sh
go get github.com/caarlos0/env/v8
go get github.com/caarlos0/env/v9
```

The usage looks like this:
Expand All @@ -24,7 +24,7 @@ import (
"fmt"
"time"

"github.com/caarlos0/env/v8"
"github.com/caarlos0/env/v9"
)

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

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

### A note about `TextUnmarshaler` and `time.Time`
Expand Down Expand Up @@ -218,7 +218,7 @@ package main
import (
"fmt"
"time"
"github.com/caarlos0/env/v8"
"github.com/caarlos0/env/v9"
)

type config struct {
Expand Down Expand Up @@ -266,7 +266,7 @@ import (
"fmt"
"log"

"github.com/caarlos0/env/v8"
"github.com/caarlos0/env/v9"
)

type Config struct {
Expand Down Expand Up @@ -306,7 +306,7 @@ import (
"fmt"
"log"

"github.com/caarlos0/env/v8"
"github.com/caarlos0/env/v9"
)

type Config struct {
Expand Down Expand Up @@ -343,7 +343,7 @@ import (
"fmt"
"log"

"github.com/caarlos0/env/v8"
"github.com/caarlos0/env/v9"
)

type Config struct {
Expand Down Expand Up @@ -377,7 +377,7 @@ import (
"fmt"
"log"

"github.com/caarlos0/env/v8"
"github.com/caarlos0/env/v9"
)

type Config struct {
Expand Down Expand Up @@ -426,7 +426,7 @@ import (
"fmt"
"log"

"github.com/caarlos0/env/v8"
"github.com/caarlos0/env/v9"
)

type Config struct {
Expand Down Expand Up @@ -466,7 +466,7 @@ import (
"fmt"
"log"

"github.com/caarlos0/env/v8"
"github.com/caarlos0/env/v9"
)

type Config struct {
Expand Down Expand Up @@ -502,7 +502,7 @@ import (
"fmt"
"log"

"github.com/caarlos0/env/v8"
"github.com/caarlos0/env/v9"
)

type Config struct {
Expand Down Expand Up @@ -535,7 +535,7 @@ import (
"fmt"
"log"

"github.com/caarlos0/env/v8"
"github.com/caarlos0/env/v9"
)

type Config struct {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/caarlos0/env/v8
module github.com/caarlos0/env/v9

go 1.17

0 comments on commit 4f6bb22

Please sign in to comment.