Skip to content

Commit

Permalink
🐛 Fix package versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
tiulpin committed Sep 29, 2023
1 parent 7afec32 commit 6c4a194
Show file tree
Hide file tree
Showing 17 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion cmd/cmd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import (

log "github.com/sirupsen/logrus"

"github.com/JetBrains/qodana-cli/core"
"github.com/JetBrains/qodana-cli/v2023/core"
)

func createProject(t *testing.T, name string) string {
Expand Down
2 changes: 1 addition & 1 deletion cmd/contributors.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package cmd
import (
"fmt"

"github.com/JetBrains/qodana-cli/core"
"github.com/JetBrains/qodana-cli/v2023/core"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"path/filepath"
"strings"

"github.com/JetBrains/qodana-cli/core"
"github.com/JetBrains/qodana-cli/v2023/core"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/pull.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package cmd

import (
"github.com/JetBrains/qodana-cli/core"
"github.com/JetBrains/qodana-cli/v2023/core"
"github.com/docker/docker/client"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package cmd

import (
"github.com/JetBrains/qodana-cli/core"
"github.com/JetBrains/qodana-cli/v2023/core"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/spf13/viper"
Expand Down
2 changes: 1 addition & 1 deletion cmd/scan.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (

log "github.com/sirupsen/logrus"

"github.com/JetBrains/qodana-cli/core"
"github.com/JetBrains/qodana-cli/v2023/core"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/show.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"os"
"path/filepath"

"github.com/JetBrains/qodana-cli/core"
"github.com/JetBrains/qodana-cli/v2023/core"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/view.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package cmd

import (
"github.com/JetBrains/qodana-cli/core"
"github.com/JetBrains/qodana-cli/v2023/core"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion core/contributors.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/JetBrains/qodana-cli/cloud"
"github.com/JetBrains/qodana-cli/v2023/cloud"
"sort"
"strings"
)
Expand Down
2 changes: 1 addition & 1 deletion core/core_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"encoding/json"
"errors"
"fmt"
"github.com/JetBrains/qodana-cli/cloud"
"github.com/JetBrains/qodana-cli/v2023/cloud"
"net/http"
"net/http/httptest"
"os"
Expand Down
2 changes: 1 addition & 1 deletion core/ide.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"encoding/xml"
"errors"
"fmt"
"github.com/JetBrains/qodana-cli/cloud"
"github.com/JetBrains/qodana-cli/v2023/cloud"
"github.com/owenrumney/go-sarif/v2/sarif"
"io"
"os"
Expand Down
2 changes: 1 addition & 1 deletion core/license.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package core
import (
"errors"
"fmt"
"github.com/JetBrains/qodana-cli/cloud"
"github.com/JetBrains/qodana-cli/v2023/cloud"
"log"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion core/properties.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package core

import (
"fmt"
"github.com/JetBrains/qodana-cli/cloud"
"github.com/JetBrains/qodana-cli/v2023/cloud"
"log"
"os"
"path/filepath"
Expand Down
2 changes: 1 addition & 1 deletion core/publisher.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"crypto/md5"
"encoding/hex"
"encoding/xml"
"github.com/JetBrains/qodana-cli/cloud"
"github.com/JetBrains/qodana-cli/v2023/cloud"
cp "github.com/otiai10/copy"
"io"
"log"
Expand Down
2 changes: 1 addition & 1 deletion core/token.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package core

import (
"fmt"
"github.com/JetBrains/qodana-cli/cloud"
"github.com/JetBrains/qodana-cli/v2023/cloud"
"github.com/pterm/pterm"
log "github.com/sirupsen/logrus"
"github.com/zalando/go-keyring"
Expand Down
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/JetBrains/qodana-cli
module github.com/JetBrains/qodana-cli/v2023

go 1.21

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
package main

import (
"github.com/JetBrains/qodana-cli/cmd"
"github.com/JetBrains/qodana-cli/core"
"github.com/JetBrains/qodana-cli/v2023/cmd"
"github.com/JetBrains/qodana-cli/v2023/core"
log "github.com/sirupsen/logrus"
"io"
"os"
Expand Down

0 comments on commit 6c4a194

Please sign in to comment.