aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2023-09-04 18:46:54 -0700
committerMicah Lee <micah@micahflee.com>2023-09-04 18:58:06 -0700
commit9819b29b25a3c6d2b6f87322edd68cc3d32c6b84 (patch)
tree9c9a75584f8f34f8ee6c4ee20793aaf93592be38
parent0d59218bf756db8852caebc084bc0a1da377eec0 (diff)
downloadonionshare-9819b29b25a3c6d2b6f87322edd68cc3d32c6b84.tar.gz
onionshare-9819b29b25a3c6d2b6f87322edd68cc3d32c6b84.zip
Update pluggable transports
-rw-r--r--RELEASE.md2
-rw-r--r--desktop/scripts/build-pt-meek.ps12
-rwxr-xr-xdesktop/scripts/build-pt-meek.sh2
-rw-r--r--desktop/scripts/build-pt-snowflake.ps12
-rwxr-xr-xdesktop/scripts/build-pt-snowflake.sh2
5 files changed, 5 insertions, 5 deletions
diff --git a/RELEASE.md b/RELEASE.md
index 41b1572f..82038797 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -47,7 +47,7 @@ poetry update
cd ..
```
-Update the versions of `meek`, `obfs4proxy`, and `snowflake` in the `desktop/scripts/build-pt-*` scripts, both the bash and PowerShell scripts.
+Update the versions of `meek`, `obfs4proxy`, and `snowflake` in the `desktop/scripts/build-pt-*` scripts, both the bash and PowerShell scripts. You can find the latest versions by looking at the tags in their git repos: [meek](https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/meek/-/tags), [obfs4proxy](https://gitlab.com/yawning/obfs4/-/tags), [snowflake](https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/tags).
### Update the documentation
diff --git a/desktop/scripts/build-pt-meek.ps1 b/desktop/scripts/build-pt-meek.ps1
index 99ff8de6..70b97797 100644
--- a/desktop/scripts/build-pt-meek.ps1
+++ b/desktop/scripts/build-pt-meek.ps1
@@ -1,4 +1,4 @@
-$env:MEEK_TAG = 'v0.37.0'
+$env:MEEK_TAG = 'v0.38.0'
New-Item -ItemType Directory -Force -Path .\build\meek
cd .\build\meek
diff --git a/desktop/scripts/build-pt-meek.sh b/desktop/scripts/build-pt-meek.sh
index 30b583cc..9b8fc205 100755
--- a/desktop/scripts/build-pt-meek.sh
+++ b/desktop/scripts/build-pt-meek.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-MEEK_TAG=v0.37.0
+MEEK_TAG=v0.38.0
OS=$(uname -s)
diff --git a/desktop/scripts/build-pt-snowflake.ps1 b/desktop/scripts/build-pt-snowflake.ps1
index 0c30133c..3f22f871 100644
--- a/desktop/scripts/build-pt-snowflake.ps1
+++ b/desktop/scripts/build-pt-snowflake.ps1
@@ -1,4 +1,4 @@
-$env:SNOWFLAKE_TAG = 'v2.3.1'
+$env:SNOWFLAKE_TAG = 'v2.6.0'
New-Item -ItemType Directory -Force -Path .\build\snowflake
cd .\build\snowflake
diff --git a/desktop/scripts/build-pt-snowflake.sh b/desktop/scripts/build-pt-snowflake.sh
index 96a62565..4d4e858d 100755
--- a/desktop/scripts/build-pt-snowflake.sh
+++ b/desktop/scripts/build-pt-snowflake.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-SNOWFLAKE_TAG=v2.3.1
+SNOWFLAKE_TAG=v2.6.0
OS=$(uname -s)