mirror of
https://github.com/onionshare/onionshare.git
synced 2025-02-02 09:35:33 -05:00
Version bump to 2.4.1
This commit is contained in:
parent
b4e022149d
commit
a5f97b6c88
@ -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`
|
||||
|
@ -1 +1 @@
|
||||
2.4
|
||||
2.4.1
|
@ -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+"
|
||||
|
@ -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",
|
||||
|
@ -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>
|
||||
|
@ -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+"
|
||||
|
Loading…
x
Reference in New Issue
Block a user