Version bump to 2.4.1

This commit is contained in:
Micah Lee 2022-01-16 16:06:29 -08:00
parent 847b6b858e
commit b0bad75e64
6 changed files with 7 additions and 7 deletions

View file

@ -1 +1 @@
2.4
2.4.1

View file

@ -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+"

View file

@ -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",