chore(v3): prepare v3 (#1009)

Signed-off-by: drew <me@andrinoff.com>
This commit is contained in:
Drew Smirnoff 2026-08-11 21:27:37 +04:00 committed by GitHub
commit 7f75d0e529
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 8 additions and 10 deletions

View file

@ -107,7 +107,7 @@ packages. ARM builds are also available for macOS, Linux, FreeBSD and OpenBSD.
Or just install it with `go`:
```bash
go install github.com/charmbracelet/glow/v2@latest
go install charm.land/glow/v3@latest
```
### Build (requires Go 1.21+)

6
go.mod
View file

@ -1,8 +1,6 @@
module github.com/charmbracelet/glow/v2
module charm.land/glow/v3
go 1.25.12
toolchain go1.26.5
go 1.26.5
require (
charm.land/bubbles/v2 v2.1.1

View file

@ -15,11 +15,11 @@ import (
"mvdan.cc/sh/v3/shell"
"github.com/caarlos0/env/v11"
"charm.land/glamour/v2"
"charm.land/glamour/v2/styles"
"github.com/charmbracelet/glow/v2/ui"
"github.com/charmbracelet/glow/v2/utils"
"charm.land/glow/v3/ui"
"charm.land/glow/v3/utils"
"github.com/caarlos0/env/v11"
"github.com/charmbracelet/log"
gap "github.com/muesli/go-app-paths"
"github.com/spf13/cobra"

View file

@ -10,9 +10,9 @@ import (
"charm.land/bubbles/v2/viewport"
tea "charm.land/bubbletea/v2"
"charm.land/glamour/v2"
"charm.land/glow/v3/utils"
"charm.land/lipgloss/v2"
"github.com/atotto/clipboard"
"github.com/charmbracelet/glow/v2/utils"
"github.com/charmbracelet/log"
"github.com/fsnotify/fsnotify"
runewidth "github.com/mattn/go-runewidth"

View file

@ -9,7 +9,7 @@ import (
"time"
tea "charm.land/bubbletea/v2"
"github.com/charmbracelet/glow/v2/utils"
"charm.land/glow/v3/utils"
"github.com/charmbracelet/log"
"github.com/muesli/gitcha"
)