summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2022-01-16 16:06:29 -0800
committerMicah Lee <micah@micahflee.com>2022-01-16 16:06:29 -0800
commita5f97b6c881b6d1053836370c6df5ff8497214ac (patch)
treed3dc683c02134f53c6cb39f151376cb214e7784e
parentb4e022149d677f9c2acd639e9dfa77bcc712b068 (diff)
downloadonionshare-a5f97b6c881b6d1053836370c6df5ff8497214ac.tar.gz
onionshare-a5f97b6c881b6d1053836370c6df5ff8497214ac.zip
Version bump to 2.4.1
-rw-r--r--RELEASE.md2
-rw-r--r--cli/onionshare_cli/resources/version.txt2
-rw-r--r--cli/pyproject.toml2
-rw-r--r--cli/setup.py4
-rw-r--r--desktop/org.onionshare.OnionShare.appdata.xml2
-rw-r--r--desktop/pyproject.toml2
6 files changed, 7 insertions, 7 deletions
diff --git a/RELEASE.md b/RELEASE.md
index 23e033f0..5a77a4ce 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -7,10 +7,8 @@ Unless you're a core OnionShare developer making a release, you'll probably neve
Before making a release, you must update the version in these places:
- [ ] `cli/pyproject.toml`
-- [ ] `cli/setup.py`
- [ ] `cli/onionshare_cli/resources/version.txt`
- [ ] `desktop/pyproject.toml`
-- [ ] `desktop/setup.py`
- [ ] `desktop/org.onionshare.OnionShare.appdata.xml`
- [ ] `docs/source/conf.py` (`version` at the top, and the `versions` list too)
- [ ] `snap/snapcraft.yaml`
diff --git a/cli/onionshare_cli/resources/version.txt b/cli/onionshare_cli/resources/version.txt
index 7208c218..58073ef8 100644
--- a/cli/onionshare_cli/resources/version.txt
+++ b/cli/onionshare_cli/resources/version.txt
@@ -1 +1 @@
-2.4 \ No newline at end of file
+2.4.1 \ No newline at end of file
diff --git a/cli/pyproject.toml b/cli/pyproject.toml
index 9b664d72..68bdf57e 100644
--- a/cli/pyproject.toml
+++ b/cli/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "onionshare_cli"
-version = "2.4"
+version = "2.4.1"
description = "OnionShare lets you securely and anonymously send and receive files. It works by starting a web server, making it accessible as a Tor onion service, and generating an unguessable web address so others can download files from you, or upload files to you. It does _not_ require setting up a separate server or using a third party file-sharing service."
authors = ["Micah Lee <micah@micahflee.com>"]
license = "GPLv3+"
diff --git a/cli/setup.py b/cli/setup.py
index 407991d0..c9fec324 100644
--- a/cli/setup.py
+++ b/cli/setup.py
@@ -18,9 +18,11 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
+import os
import setuptools
-version = "2.4"
+with open(os.path.join("onionshare_cli", "resources", "version.txt")) as f:
+ version = f.read().strip()
setuptools.setup(
name="onionshare-cli",
diff --git a/desktop/org.onionshare.OnionShare.appdata.xml b/desktop/org.onionshare.OnionShare.appdata.xml
index 1bdac5f8..f6cf732c 100644
--- a/desktop/org.onionshare.OnionShare.appdata.xml
+++ b/desktop/org.onionshare.OnionShare.appdata.xml
@@ -24,6 +24,6 @@
<update_contact>micah@micahflee.com</update_contact>
<content_rating type="oars-1.1" />
<releases>
- <release type="development" date="2021-09-26" version="2.4" />
+ <release type="development" date="2022-01-17" version="2.4.1" />
</releases>
</component>
diff --git a/desktop/pyproject.toml b/desktop/pyproject.toml
index 7410c04b..f8d72560 100644
--- a/desktop/pyproject.toml
+++ b/desktop/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "onionshare"
-version = "4.2.1"
+version = "2.4.1"
description = "OnionShare lets you securely and anonymously send and receive files. It works by starting a web server, making it accessible as a Tor onion service, and generating an unguessable web address so others can download files from you, or upload files to you. It does _not_ require setting up a separate server or using a third party file-sharing service."
authors = ["Micah Lee <micah@micahflee.com>"]
license = "GPLv3+"