Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

go 1.18 module support #149

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*~
go.sum
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

7 changes: 7 additions & 0 deletions effects/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module github.com/faiface/beep/effects

go 1.18

replace github.com/faiface/beep => ../

require github.com/faiface/beep v1.1.0
7 changes: 7 additions & 0 deletions flac/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module github.com/faiface/beep/flac

go 1.18

replace (
github.com/faiface/beep => ../
)
7 changes: 7 additions & 0 deletions generators/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module github.com/faiface/beep/generators

go 1.18

replace github.com/faiface/beep => ../

require github.com/faiface/beep v0.0.0-00010101000000-000000000000
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/faiface/beep

go 1.14
go 1.18

require (
github.com/gdamore/tcell v1.3.0
Expand Down
11 changes: 11 additions & 0 deletions mp3/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module github.com/faiface/beep/mp3

go 1.18

replace github.com/faiface/beep => ../

require (
github.com/faiface/beep v0.0.0-00010101000000-000000000000
github.com/hajimehoshi/go-mp3 v0.3.3
github.com/pkg/errors v0.9.1
)
18 changes: 18 additions & 0 deletions speaker/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module github.com/faiface/beep/speaker

go 1.18

replace github.com/faiface/beep => ../

require (
github.com/faiface/beep v0.0.0-00010101000000-000000000000
github.com/hajimehoshi/oto v1.0.1
github.com/pkg/errors v0.9.1
)

require (
golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8 // indirect
golang.org/x/image v0.0.0-20190227222117-0694c2d4d067 // indirect
golang.org/x/mobile v0.0.0-20190415191353-3e0bab5405d6 // indirect
golang.org/x/sys v0.0.0-20190429190828-d89cdac9e872 // indirect
)
13 changes: 13 additions & 0 deletions vorbis/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module github.com/faiface/beep/vorbis

go 1.18

replace github.com/faiface/beep => ../

require (
github.com/faiface/beep v0.0.0-00010101000000-000000000000
github.com/jfreymuth/oggvorbis v1.0.1
github.com/pkg/errors v0.9.1
)

require github.com/jfreymuth/vorbis v1.0.0 // indirect
10 changes: 10 additions & 0 deletions wav/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module github.com/faiface/beep/wav

go 1.18

replace github.com/faiface/beep => ../

require (
github.com/faiface/beep v0.0.0-00010101000000-000000000000
github.com/pkg/errors v0.9.1
)