Skip to content

Commit 3e1a644

Browse files
committed
New stable release v1.1.0
1 parent 8116767 commit 3e1a644

35 files changed

Lines changed: 83 additions & 83 deletions

cmd/commands_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"path/filepath"
88
"testing"
99

10-
"github.com/devgrep/devgrep/internal/config"
11-
"github.com/devgrep/devgrep/internal/storage"
10+
"github.com/aasixh/devgrep/internal/config"
11+
"github.com/aasixh/devgrep/internal/storage"
1212
)
1313

1414
func TestRootVersionCommand(t *testing.T) {

cmd/doctor.go

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

6-
"github.com/devgrep/devgrep/internal/doctor"
6+
"github.com/aasixh/devgrep/internal/doctor"
77
"github.com/spf13/cobra"
88
)
99

cmd/index.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ import (
1111
"strings"
1212
"time"
1313

14-
"github.com/devgrep/devgrep/internal/config"
15-
"github.com/devgrep/devgrep/internal/history"
16-
idxpkg "github.com/devgrep/devgrep/internal/indexer"
17-
"github.com/devgrep/devgrep/internal/logs"
18-
"github.com/devgrep/devgrep/internal/storage"
19-
"github.com/devgrep/devgrep/internal/utils"
14+
"github.com/aasixh/devgrep/internal/config"
15+
"github.com/aasixh/devgrep/internal/history"
16+
idxpkg "github.com/aasixh/devgrep/internal/indexer"
17+
"github.com/aasixh/devgrep/internal/logs"
18+
"github.com/aasixh/devgrep/internal/storage"
19+
"github.com/aasixh/devgrep/internal/utils"
2020
"github.com/fsnotify/fsnotify"
2121
"github.com/spf13/cobra"
2222
)

cmd/root.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"os"
99
"strings"
1010

11-
"github.com/devgrep/devgrep/internal/config"
12-
"github.com/devgrep/devgrep/internal/storage"
13-
"github.com/devgrep/devgrep/internal/utils"
11+
"github.com/aasixh/devgrep/internal/config"
12+
"github.com/aasixh/devgrep/internal/storage"
13+
"github.com/aasixh/devgrep/internal/utils"
1414
"github.com/spf13/cobra"
1515
)
1616

cmd/search.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"strings"
66
"time"
77

8-
"github.com/devgrep/devgrep/internal/logs"
9-
searchpkg "github.com/devgrep/devgrep/internal/search"
10-
"github.com/devgrep/devgrep/internal/tui"
8+
"github.com/aasixh/devgrep/internal/logs"
9+
searchpkg "github.com/aasixh/devgrep/internal/search"
10+
"github.com/aasixh/devgrep/internal/tui"
1111
"github.com/spf13/cobra"
1212
)
1313

cmd/sources.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"sort"
88
"strings"
99

10-
searchpkg "github.com/devgrep/devgrep/internal/search"
11-
"github.com/devgrep/devgrep/internal/storage"
12-
"github.com/devgrep/devgrep/internal/utils"
10+
searchpkg "github.com/aasixh/devgrep/internal/search"
11+
"github.com/aasixh/devgrep/internal/storage"
12+
"github.com/aasixh/devgrep/internal/utils"
1313
"github.com/spf13/cobra"
1414
)
1515

cmd/stats.go

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

7+
"github.com/aasixh/devgrep/internal/utils"
78
"github.com/charmbracelet/lipgloss"
8-
"github.com/devgrep/devgrep/internal/utils"
99
"github.com/spf13/cobra"
1010
)
1111

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/devgrep/devgrep
1+
module github.com/aasixh/devgrep
22

33
go 1.24.5
44

internal/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"path/filepath"
88

9-
"github.com/devgrep/devgrep/internal/utils"
9+
"github.com/aasixh/devgrep/internal/utils"
1010
"gopkg.in/yaml.v3"
1111
)
1212

internal/doctor/doctor.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ import (
99
"path/filepath"
1010
"strings"
1111

12+
"github.com/aasixh/devgrep/internal/config"
13+
"github.com/aasixh/devgrep/internal/storage"
14+
"github.com/aasixh/devgrep/internal/utils"
1215
"github.com/charmbracelet/lipgloss"
13-
"github.com/devgrep/devgrep/internal/config"
14-
"github.com/devgrep/devgrep/internal/storage"
15-
"github.com/devgrep/devgrep/internal/utils"
1616
)
1717

1818
const (

0 commit comments

Comments
 (0)