This is an automated email from the git hooks/post-receive script.
dcf pushed a commit to branch main in repository pluggable-transports/goptlib.
commit 0630d8d2ab5c1e1969a73958ca07d3ddcf1fcf71 Author: David Fifield david@bamsoftware.com AuthorDate: Fri Apr 14 19:56:03 2023 -0600
Revert "Move repository URL to gitlab.torproject.org."
This reverts commit 24b2b145d7afc66b66e58c702cf988c00f694b70. --- ChangeLog | 5 ----- README | 6 +++--- examples/dummy-client/dummy-client.go | 2 +- examples/dummy-server/dummy-server.go | 2 +- go.mod | 2 +- 5 files changed, 6 insertions(+), 11 deletions(-)
diff --git a/ChangeLog b/ChangeLog index 17ee270..360baf3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,3 @@ -== 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 20cb428..1a48b3c 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 gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptlib + go get git.torproject.org/pluggable-transports/goptlib.git
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://pkg.go.dev/gitlab.torproject.org/tpo/anti-censorship/pluggable-trans... +https://godoc.org/git.torproject.org/pluggable-transports/goptlib.git
Report bugs to the tor-dev@lists.torproject.org mailing list or to the -bug tracker at https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptl.... +bug tracker at https://trac.torproject.org/projects/tor.
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 973e76d..b1a9647 100644 --- a/examples/dummy-client/dummy-client.go +++ b/examples/dummy-client/dummy-client.go @@ -20,7 +20,7 @@ import ( "syscall" )
-import "gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptlib" +import "git.torproject.org/pluggable-transports/goptlib.git"
var ptInfo pt.ClientInfo
diff --git a/examples/dummy-server/dummy-server.go b/examples/dummy-server/dummy-server.go index eb8f768..f3b0c8f 100644 --- a/examples/dummy-server/dummy-server.go +++ b/examples/dummy-server/dummy-server.go @@ -21,7 +21,7 @@ import ( "syscall" )
-import "gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptlib" +import "git.torproject.org/pluggable-transports/goptlib.git"
var ptInfo pt.ServerInfo
diff --git a/go.mod b/go.mod index bd1ec3e..aec837f 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptlib +module git.torproject.org/pluggable-transports/goptlib.git
go 1.11