Skip to content

Commit ab2e6a2

Browse files
committed
Release 1.5.1
1 parent 9159dd8 commit ab2e6a2

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,16 @@ We [keep a changelog.](http://keepachangelog.com/)
44

55
## [Unreleased]
66

7-
## [1.5.1] - 2025-07-15
7+
## [1.5.1] - 2025-07-14
88

99
### Removed
1010

1111
- Remove `*/_version.py` from `.gitignore`
1212

13+
### Pull Requests Merged
14+
15+
- [PR_124](https://github.com/mailjet/mailjet-apiv3-python/pull/124) - Release 1.5.1
16+
1317
## [1.5.0] - 2025-07-11
1418

1519
### Added

conda.recipe/meta.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ test:
4141
- samples
4242
source_files:
4343
- tests/test_client.py
44+
- tests/test_version.py
4445
- test.py
4546
- tests/doc_tests/files/data.csv
4647
requires:
@@ -50,6 +51,7 @@ test:
5051
- pip check
5152
# TODO: Add environment variables for tests
5253
- pytest tests/test_client.py -vv
54+
- pytest tests/test_version.py -vv
5355
- pytest test.py -vv
5456

5557
about:

mailjet_rest/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.5.1rc1"
1+
__version__ = "1.5.1"

test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def test_user_agent(self) -> None:
215215
None
216216
"""
217217
self.client = Client(auth=self.auth, version="v3.1")
218-
self.assertEqual(self.client.config.user_agent, "mailjet-apiv3-python/v1.5.0")
218+
self.assertEqual(self.client.config.user_agent, "mailjet-apiv3-python/v1.5.1")
219219

220220

221221
class TestCsvImport(unittest.TestCase):

0 commit comments

Comments
 (0)