Skip to content

Commit

Permalink
Add changelog and bump version for 1.4.0
Browse files Browse the repository at this point in the history
Co-authored-by: Colin Copeland <[email protected]>
Co-authored-by: Simon Kagwi <[email protected]>
  • Loading branch information
3 people committed Nov 14, 2024
1 parent 40116cc commit f82f05c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changes

## 1.4.0 (November 14, 2024)

- Send high priority transactional messages before bulk messages (#25)
- Allow MT message send rate to be configured (#22)

## 1.3.0 (November 5, 2024)

- Handle message decoding more safely (#20)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def read_file(filename):
if __name__ == "__main__":
setuptools.setup(
name="smpp_gateway",
version="1.3.0",
version="1.4.0",
license="MIT",
install_requires=[
"RapidSMS>=2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/smpp_gateway/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0"
__version__ = "1.4.0"
2 changes: 1 addition & 1 deletion tests/test_smpp_gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "0.1.0"
assert __version__ == "1.4.0"

0 comments on commit f82f05c

Please sign in to comment.