Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
mhmdiaa committed Jul 28, 2024
1 parent 14bd698 commit ac37334
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/mhmdiaa/chronos
module github.com/mhmdiaa/chronos/v2

go 1.21

Expand Down
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
"strings"
"sync"

"github.com/mhmdiaa/chronos/modules"
"github.com/mhmdiaa/chronos/pkg/config"
"github.com/mhmdiaa/chronos/pkg/logger"
"github.com/mhmdiaa/chronos/pkg/wayback"
"github.com/mhmdiaa/chronos/v2/modules"
"github.com/mhmdiaa/chronos/v2/pkg/config"
"github.com/mhmdiaa/chronos/v2/pkg/logger"
"github.com/mhmdiaa/chronos/v2/pkg/wayback"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions modules/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"strings"
"sync"

"github.com/mhmdiaa/chronos/pkg/logger"
"github.com/mhmdiaa/chronos/pkg/wayback"
"github.com/mhmdiaa/chronos/v2/pkg/logger"
"github.com/mhmdiaa/chronos/v2/pkg/wayback"
"gopkg.in/yaml.v2"
)

Expand Down
4 changes: 2 additions & 2 deletions modules/favicon.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"encoding/base64"
"sync"

"github.com/mhmdiaa/chronos/pkg/logger"
"github.com/mhmdiaa/chronos/pkg/wayback"
"github.com/mhmdiaa/chronos/v2/pkg/logger"
"github.com/mhmdiaa/chronos/v2/pkg/wayback"
"github.com/spaolacci/murmur3"
)

Expand Down
2 changes: 1 addition & 1 deletion modules/full.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package modules
import (
"sync"

"github.com/mhmdiaa/chronos/pkg/wayback"
"github.com/mhmdiaa/chronos/v2/pkg/wayback"
)

type Full struct {
Expand Down
4 changes: 2 additions & 2 deletions modules/html.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"sync"

"github.com/antchfx/htmlquery"
"github.com/mhmdiaa/chronos/pkg/logger"
"github.com/mhmdiaa/chronos/pkg/wayback"
"github.com/mhmdiaa/chronos/v2/pkg/logger"
"github.com/mhmdiaa/chronos/v2/pkg/wayback"
)

type HTML struct {
Expand Down
2 changes: 1 addition & 1 deletion modules/jsluice.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"sync"

"github.com/BishopFox/jsluice"
"github.com/mhmdiaa/chronos/pkg/wayback"
"github.com/mhmdiaa/chronos/v2/pkg/wayback"
)

type JSLuice struct {
Expand Down
2 changes: 1 addition & 1 deletion modules/regex.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"regexp"
"sync"

"github.com/mhmdiaa/chronos/pkg/wayback"
"github.com/mhmdiaa/chronos/v2/pkg/wayback"
)

type Regex struct {
Expand Down
4 changes: 2 additions & 2 deletions modules/xml.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"sync"

"github.com/antchfx/xmlquery"
"github.com/mhmdiaa/chronos/pkg/logger"
"github.com/mhmdiaa/chronos/pkg/wayback"
"github.com/mhmdiaa/chronos/v2/pkg/logger"
"github.com/mhmdiaa/chronos/v2/pkg/wayback"
)

type XML struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"flag"
"fmt"

"github.com/mhmdiaa/chronos/pkg/wayback"
"github.com/mhmdiaa/chronos/v2/pkg/wayback"
)

type Config struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/wayback/wayback.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"sync"

"github.com/mhmdiaa/chronos/pkg/logger"
"github.com/mhmdiaa/chronos/v2/pkg/logger"
)

type Filters struct {
Expand Down

0 comments on commit ac37334

Please sign in to comment.