Skip to content

Commit

Permalink
Hotfix dependency issue, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
dhaavi committed May 2, 2020
1 parent 467aff1 commit 6bb0ac2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion firewall/filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import (

// module dependencies
_ "github.com/safing/portmaster/core"
_ "github.com/safing/portmaster/profile"
)

var (
Expand Down
5 changes: 2 additions & 3 deletions firewall/interception.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ import (
"github.com/safing/portmaster/network/packet"

// module dependencies
_ "github.com/safing/portmaster/core"
_ "github.com/safing/portmaster/profile"
_ "github.com/safing/portmaster/core/base"
)

var (
Expand All @@ -42,7 +41,7 @@ var (
)

func init() {
interceptionModule = modules.Register("interception", interceptionPrep, interceptionStart, interceptionStop, "base")
interceptionModule = modules.Register("interception", interceptionPrep, interceptionStart, interceptionStop, "base", "updates", "network")

network.SetDefaultFirewallHandler(defaultHandler)
}
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ import (
)

func main() {
info.Set("Portmaster", "0.4.2", "AGPLv3", true)
info.Set("Portmaster", "0.4.3", "AGPLv3", true)
os.Exit(run.Run())
}

0 comments on commit 6bb0ac2

Please sign in to comment.