This is an automated email from the git hooks/post-receive script.
dcf pushed a commit to branch main in repository pluggable-transports/goptlib.
The following commit(s) were added to refs/heads/main by this push: new 24b2b14 Move repository URL to gitlab.torproject.org. 24b2b14 is described below
commit 24b2b145d7afc66b66e58c702cf988c00f694b70 Author: David Fifield david@bamsoftware.com AuthorDate: Fri Apr 14 19:43:42 2023 -0600
Move repository URL to gitlab.torproject.org.
https://gitlab.torproject.org/tpo/anti-censorship/team/-/issues/86#note_2823... --- ChangeLog | 5 +++++ README | 6 +++--- examples/dummy-client/dummy-client.go | 2 +- examples/dummy-server/dummy-server.go | 2 +- go.mod | 2 +- 5 files changed, 11 insertions(+), 6 deletions(-)
diff --git a/ChangeLog b/ChangeLog index 360baf3..17ee270 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +== v1.4.0 + +Moved the repository URL from git.torproject.org/pluggable-transports/goptlib.git +to gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptlib. + == v1.3.0
Added a DialOrWithDialer function that allows you to, for example, use a diff --git a/README b/README index 1a48b3c..20cb428 100644 --- a/README +++ b/README @@ -4,7 +4,7 @@ https://spec.torproject.org/pt-spec https://spec.torproject.org/ext-orport-spec
To download a copy of the library into $GOPATH: - go get git.torproject.org/pluggable-transports/goptlib.git + go get gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptlib
See the included example programs for examples of how to use the library. To build them, enter their directory and run "go build". @@ -14,10 +14,10 @@ The recommended way to start writing a new transport plugin is to copy dummy-client or dummy-server and make changes to it.
There is browseable documentation here: -https://godoc.org/git.torproject.org/pluggable-transports/goptlib.git +https://pkg.go.dev/gitlab.torproject.org/tpo/anti-censorship/pluggable-trans...
Report bugs to the tor-dev@lists.torproject.org mailing list or to the -bug tracker at https://trac.torproject.org/projects/tor. +bug tracker at https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptl....
To the extent possible under law, the authors have dedicated all copyright and related and neighboring rights to this software to the diff --git a/examples/dummy-client/dummy-client.go b/examples/dummy-client/dummy-client.go index b1a9647..973e76d 100644 --- a/examples/dummy-client/dummy-client.go +++ b/examples/dummy-client/dummy-client.go @@ -20,7 +20,7 @@ import ( "syscall" )
-import "git.torproject.org/pluggable-transports/goptlib.git" +import "gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptlib"
var ptInfo pt.ClientInfo
diff --git a/examples/dummy-server/dummy-server.go b/examples/dummy-server/dummy-server.go index f3b0c8f..eb8f768 100644 --- a/examples/dummy-server/dummy-server.go +++ b/examples/dummy-server/dummy-server.go @@ -21,7 +21,7 @@ import ( "syscall" )
-import "git.torproject.org/pluggable-transports/goptlib.git" +import "gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptlib"
var ptInfo pt.ServerInfo
diff --git a/go.mod b/go.mod index aec837f..bd1ec3e 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module git.torproject.org/pluggable-transports/goptlib.git +module gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptlib
go 1.11