Skip to content

Commit f3d8788

Browse files
committed
chore: updates
1 parent 25c9ebe commit f3d8788

File tree

8 files changed

+25
-25
lines changed

8 files changed

+25
-25
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
test:
66
strategy:
77
matrix:
8-
go: ["1.18"]
8+
go: ["1.22"]
99
name: Go test
1010
runs-on: ubuntu-latest
1111
steps:
@@ -21,7 +21,7 @@ jobs:
2121
build:
2222
strategy:
2323
matrix:
24-
go: ["1.18"]
24+
go: ["1.22"]
2525
runs-on: ubuntu-latest
2626
name: Build
2727
needs: test

.github/workflows/code-coverage.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build:
1010
strategy:
1111
matrix:
12-
go: ["1.18"]
12+
go: ["1.22"]
1313

1414
runs-on: ubuntu-latest
1515

@@ -42,7 +42,7 @@ jobs:
4242

4343
steps:
4444
- name: Checkout code
45-
uses: actions/checkout@v2
45+
uses: actions/checkout@v5
4646

4747
- name: Download coverage report
4848
uses: actions/download-artifact@v4

.github/workflows/releaser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Go
1717
uses: actions/setup-go@v5
1818
with:
19-
go-version: 1.18
19+
go-version: 1.22
2020
- name: Run GoReleaser
2121
uses: goreleaser/goreleaser-action@v6
2222
with:

cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/spf13/cobra"
99

1010
chigo "github.com/UltiRequiem/chigo/pkg"
11-
lorelai "github.com/UltiRequiem/lorelai/pkg"
11+
lorelai "github.com/bobadilla-tech/lorelai/pkg"
1212
)
1313

1414
const VERSION = "1.1.1"

example/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/UltiRequiem/lorelai/pkg"
6+
"github.com/bobadilla-tech/lorelai/pkg"
77
)
88

99
func sayHi() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/UltiRequiem/lorelai
1+
module github.com/bobadilla-tech/lorelai
22

33
go 1.22
44

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
"github.com/UltiRequiem/lorelai/cmd"
7+
"github.com/bobadilla-tech/lorelai/cmd"
88
)
99

1010
func main() {

readme.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Lorelai
22

3-
[![PkgGoDev](https://pkg.go.dev/badge/github.com/UltiRequiem/lorelai)](https://pkg.go.dev/github.com/UltiRequiem/lorelai)
4-
![CodeQL](https://github.com/UltiRequiem/lorelai/workflows/CodeQL/badge.svg)
5-
[![Go Report Card](https://goreportcard.com/badge/github.com/UltiRequiem/lorelai)](https://goreportcard.com/report/github.com/UltiRequiem/lorelai)
3+
[![PkgGoDev](https://pkg.go.dev/badge/github.com/bobadilla-tech/lorelai)](https://pkg.go.dev/github.com/bobadilla-tech/lorelai)
4+
![CodeQL](https://github.com/bobadilla-tech/lorelai/workflows/CodeQL/badge.svg)
5+
[![Go Report Card](https://goreportcard.com/badge/github.com/bobadilla-tech/lorelai)](https://goreportcard.com/report/github.com/bobadilla-tech/lorelai)
66

77
A [package](#documentation) and [command line tool](#cli-tool) to generate
88
[Lorem ipsum](https://en.wikipedia.org/wiki/Lorem_ipsum).
@@ -11,12 +11,12 @@ A [package](#documentation) and [command line tool](#cli-tool) to generate
1111

1212
[Blog explaining this package](https://ultirequiem.hashnode.dev/lorelai)
1313

14-
Checkout the code coverage at: https://ulti.js.org/lorelai
14+
Checkout the code coverage at: https://bobadilla-tech.github.io/lorelai/#file0
1515

1616
## Install
1717

1818
```bash
19-
go get github.com/UltiRequiem/lorelai/pkg
19+
go get github.com/bobadilla-tech/lorelai/pkg
2020
```
2121

2222
## Examples
@@ -47,47 +47,47 @@ For more examples check the [examples directory](./example/main.go).
4747

4848
This package exports 8 functions:
4949

50-
- [Word](https://github.com/UltiRequiem/lorelai/blob/main/pkg/root.go#L29):
50+
- [Word](https://github.com/bobadilla-tech/lorelai/blob/main/pkg/root.go#L29):
5151
Returns 1 Word
5252

5353
E.g: "sodales", "phasellus" , "diam", etc.
5454

55-
- [Sentence](https://github.com/UltiRequiem/lorelai/blob/main/pkg/root.go#L34):
55+
- [Sentence](https://github.com/bobadilla-tech/lorelai/blob/main/pkg/root.go#L34):
5656
Returns 8 Words
5757

5858
E.g: "Varius sed imperdiet amet laoreet ex sapien placerat.", etc.
5959

60-
- [Paragraph](https://github.com/UltiRequiem/lorelai/blob/main/pkg/root.go#L39):
60+
- [Paragraph](https://github.com/bobadilla-tech/lorelai/blob/main/pkg/root.go#L39):
6161
Returns 45 Words
6262

6363
E.g: "Nisi lacinia ante non nunc eros nibh mattis enim orci ante in ornare
6464
accumsan iaculis vel..."
6565

66-
- [FormattedLoremWords](https://github.com/UltiRequiem/lorelai/blob/main/pkg/root.go#L24):
66+
- [FormattedLoremWords](https://github.com/bobadilla-tech/lorelai/blob/main/pkg/root.go#L24):
6767
It receives a number and returns a string with the number of words you have
6868
indicated. The first letter will be capital and the sentence will end with a
6969
dot.
7070

7171
E.g: "Libero malesuada duis massa luctus.", "Curabitur hendrerit sed.",
7272
"Ligula.", etc.
7373

74-
- [LoremWords](https://github.com/UltiRequiem/lorelai/blob/main/pkg/root.go#L10):
74+
- [LoremWords](https://github.com/bobadilla-tech/lorelai/blob/main/pkg/root.go#L10):
7575
It receives a number and returns a string with the number of words you have
7676
indicated.
7777

7878
E.g: "arcu", "blandit porttitor a scelerisque", "donec justo lacinia", etc.
7979

80-
- [Domain](https://github.com/UltiRequiem/lorelai/blob/main/pkg/convenience.go#L10):
80+
- [Domain](https://github.com/bobadilla-tech/lorelai/blob/main/pkg/convenience.go#L10):
8181
Returns a domain
8282

8383
E.g: "neque.net", "arcu.org" , "lorem.io", etc.
8484

85-
- [URL](https://github.com/UltiRequiem/lorelai/blob/main/pkg/convenience.go#L17):
85+
- [URL](https://github.com/bobadilla-tech/lorelai/blob/main/pkg/convenience.go#L17):
8686
Returns an URL
8787

8888
E.g: "https://pellentesque.org", "https://id.io" , "https://efficitur.com", etc.
8989

90-
- [Email](https://github.com/UltiRequiem/lorelai/blob/main/pkg/convenience.go#L22):
90+
- [Email](https://github.com/bobadilla-tech/lorelai/blob/main/pkg/convenience.go#L22):
9191
Returns an email address
9292

9393
E.g: "bibendum@id.pe", "ornare@duis.pe" , "quisque@faucibus.org", etc.
@@ -97,11 +97,11 @@ E.g: "bibendum@id.pe", "ornare@duis.pe" , "quisque@faucibus.org", etc.
9797
### Installation
9898

9999
```bash
100-
go install github.com/UltiRequiem/lorelai@latest
100+
go install github.com/bobadilla-tech/lorelai@latest
101101
```
102102

103103
Or use a binary from
104-
[releases](https://github.com/UltiRequiem/lorelai/releases/latest).
104+
[releases](https://github.com/bobadilla-tech/lorelai/releases/latest).
105105

106106
### Usage
107107

@@ -134,7 +134,7 @@ If you don't pass any flag or you pass the help flag:
134134
lorelai -w 55 -s 5 # Will print 55 words and 5 sentences
135135
136136
If you need more help, found a bug or want to suggest a new feature:
137-
https://github.com/UltiRequiem/lorelai
137+
https://github.com/bobadilla-tech/lorelai
138138
```
139139

140140
## Contributing

0 commit comments

Comments
 (0)