Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.10.14 #1143

Merged
merged 3 commits into from
Nov 9, 2023
Merged

0.10.14 #1143

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = 10
PATCH = 13
PATCH = 14
META = ''


Expand Down
2 changes: 1 addition & 1 deletion jasmin/managers/listeners.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ def submit_sm_resp_event(self, r, amqpMessage):
if submit_sm_resp_bill is not None and submit_sm_resp_bill.getTotalAmounts() > 0:
total_bill_amount += submit_sm_resp_bill.getTotalAmounts()
else:
short_message = r.request.params['short_message']
short_message = _pdu.params['short_message']

# Do not log text for privacy reasons
# Added in #691
Expand Down
4 changes: 2 additions & 2 deletions misc/doc/sources/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

# General information about the project.
project = 'Jasmin SMS Gateway'
copyright = '2014-2022, Jasmin'
copyright = '2014-2023, Jasmin'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand All @@ -38,7 +38,7 @@
# The short X.Y version.
version = "0.10"
# The full version, including alpha/beta/rc tags.
release = "0.10.13"
release = "0.10.14"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion nfpm.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "jasmin-sms-gateway"
arch: "amd64"
platform: "linux"
version: "v0.10.13"
version: "v0.10.14"
section: "default"
priority: "extra"
maintainer: "Jookies LTD <[email protected]>"
Expand Down
2 changes: 1 addition & 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.10.13',
version='0.10.14',
author="Jookies LTD",
author_email="[email protected]",
url="https://www.jasminsms.com",
Expand Down
Loading