Skip to content

Commit

Permalink
Update dependencies and version to 3.8
Browse files Browse the repository at this point in the history
- Bump Go to 1.23
- Update multiple module versions
- Update version in app.go to 3.8-dev
  • Loading branch information
bensadeh committed Oct 14, 2024
1 parent dec7fee commit d0ea51e
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 55 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# Changelog

## 3.8

_WIP_

- Bump Go to 1.23

## 3.7

_28.08.24_

- Interacting with stories in any way (open link in browser, open in reader mode etc.)
now marks the submission as read (Thanks, @antznin!)
- Interacting with stories in any way (open link in browser, open in reader mode etc.)
now marks the submission as read (Thanks, @antznin!)

## 3.6

Expand Down
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ package app

const (
Name = "circumflex"
Version = "3.7"
Version = "3.8-dev"
MinimumLessVersion = 633
)
33 changes: 17 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
module clx

go 1.22
go 1.23

require (
github.com/JohannesKaufmann/html-to-markdown v1.6.0
github.com/MichaelMure/go-term-text v0.3.1
github.com/PuerkitoBio/goquery v1.9.2
github.com/PuerkitoBio/goquery v1.10.0
github.com/bobesa/go-domain-util v0.0.0-20190911083921-4033b5f7dd89
github.com/charmbracelet/bubbles v0.19.0
github.com/charmbracelet/bubbletea v1.1.0
github.com/charmbracelet/bubbles v0.20.0
github.com/charmbracelet/bubbletea v1.1.1
github.com/charmbracelet/glamour v0.8.0
github.com/charmbracelet/lipgloss v0.13.0
github.com/go-resty/resty/v2 v2.14.0
github.com/go-shiori/go-readability v0.0.0-20240204090920-819593fddc6b
github.com/jedib0t/go-pretty/v6 v6.5.9
github.com/go-resty/resty/v2 v2.15.3
github.com/go-shiori/go-readability v0.0.0-20241012063810-92284fa8a71f
github.com/jedib0t/go-pretty/v6 v6.6.0
github.com/logrusorgru/aurora/v3 v3.0.0
github.com/muesli/reflow v0.3.0
github.com/muesli/termenv v0.15.3-0.20240618155329-98d742f6907a
Expand All @@ -26,12 +26,13 @@ require (
require (
github.com/alecthomas/chroma/v2 v2.14.0 // indirect
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de // indirect
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
github.com/aymerick/douceur v0.2.0 // indirect
github.com/charmbracelet/x/ansi v0.2.3 // indirect
github.com/charmbracelet/x/ansi v0.3.2 // indirect
github.com/charmbracelet/x/term v0.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dlclark/regexp2 v1.11.0 // indirect
github.com/dlclark/regexp2 v1.11.4 // indirect
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
github.com/go-shiori/dom v0.0.0-20230515143342-73569d674e1c // indirect
github.com/gogs/chardet v0.0.0-20211120154057-b7413eaefb8f // indirect
Expand All @@ -47,14 +48,14 @@ require (
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/tkuchiki/go-timezone v0.2.2 // indirect
github.com/yuin/goldmark v1.7.4 // indirect
github.com/yuin/goldmark-emoji v1.0.3 // indirect
golang.org/x/net v0.27.0 // indirect
github.com/tkuchiki/go-timezone v0.2.3 // indirect
github.com/yuin/goldmark v1.7.6 // indirect
github.com/yuin/goldmark-emoji v1.0.4 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.24.0 // indirect
golang.org/x/term v0.22.0 // indirect
golang.org/x/text v0.16.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/term v0.25.0 // indirect
golang.org/x/text v0.19.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit d0ea51e

Please sign in to comment.