Skip to content

Commit

Permalink
Merge branch '0.11.1' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
farirat authored Nov 23, 2023
2 parents 2f0071e + 52962a5 commit 50c6f03
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion jasmin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

MAJOR = 0
MINOR = 11
PATCH = 0
PATCH = 1
META = ''


Expand Down
2 changes: 1 addition & 1 deletion misc/doc/sources/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
# The short X.Y version.
version = "0.11"
# The full version, including alpha/beta/rc tags.
release = "0.11.0"
release = "0.11.1"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion misc/doc/sources/installation/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Jasmin installation is provided as rpm & deb Linux packages, docker image and py
Prerequisites & Dependencies
****************************

`Jasmin <http://jasminsms.com/>`_ requires Python 3 (Python 2 is no more supported) with a functioning `pip module <https://pypi.python.org/pypi/pip>`_.
`Jasmin <http://jasminsms.com/>`_ requires Python 3.8+ with a functioning `pip module <https://pypi.python.org/pypi/pip>`_.

.. hint:: Latest pip module installation: # **curl https://bootstrap.pypa.io/get-pip.py | python**

Expand Down
3 changes: 1 addition & 2 deletions nfpm.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
name: "jasmin-sms-gateway"
arch: "all"
platform: "linux"
version: "0.11.0"
release: "2"
version: "v0.11.1"
section: "default"
priority: "extra"
maintainer: "Jookies LTD <[email protected]>"
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def parse_requirements(filename):

setup(
name="jasmin",
version='0.11.0',
version='0.11.1',
author="Jookies LTD",
author_email="[email protected]",
url="https://www.jasminsms.com",
Expand All @@ -21,6 +21,7 @@ def parse_requirements(filename):
include_package_data=True,
install_requires=parse_requirements('requirements.txt'),
tests_require=parse_requirements('requirements-test.txt'),
python_requires='>=3.8',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Twisted',
Expand Down

0 comments on commit 50c6f03

Please sign in to comment.