Skip to content

Commit

Permalink
add path v2
Browse files Browse the repository at this point in the history
  • Loading branch information
Aizen committed Oct 7, 2024
1 parent 121cf7c commit 71bd0c5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
To install `cryptipass`, use `go get`:

```bash
go get github.com/francescoalemanno/cryptipass
go get github.com/francescoalemanno/cryptipass/v2
```

Then, import it into your project:

```go
import "github.com/francescoalemanno/cryptipass"
import "github.com/francescoalemanno/cryptipass/v2"
```

NOTE: **We also have a [CLI](cmd/genpw) available for non-library uses.**
Expand Down
2 changes: 1 addition & 1 deletion cmd/genpw/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"text/tabwriter"

"github.com/francescoalemanno/cryptipass"
"github.com/francescoalemanno/cryptipass/v2"
)

type Passphrase struct {
Expand Down
2 changes: 1 addition & 1 deletion cryptipass_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"testing"

"github.com/francescoalemanno/cryptipass"
"github.com/francescoalemanno/cryptipass/v2"
)

func TestBasic(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion examples/customlist/customlist.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"github.com/francescoalemanno/cryptipass"
"github.com/francescoalemanno/cryptipass/v2"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/passphrase/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"github.com/francescoalemanno/cryptipass"
"github.com/francescoalemanno/cryptipass/v2"
)

func main() {
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/francescoalemanno/cryptipass
module github.com/francescoalemanno/cryptipass/v2

go 1.23.0

0 comments on commit 71bd0c5

Please sign in to comment.