Skip to content

Commit f0719b4

Browse files
authored
Merge pull request #124 from mailjet/release/1.5.1
Release 1.5.1
2 parents aeaba46 + 32615a2 commit f0719b4

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-4
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,5 +234,3 @@ dev/
234234
# pytest cache
235235
.pytest_cache/
236236
pytestdebug.log
237-
238-
*/_version.py

CHANGELOG.md

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

55
## [Unreleased]
66

7+
## [1.5.1] - 2025-07-14
8+
9+
### Removed
10+
11+
- Remove `*/_version.py` from `.gitignore`
12+
13+
### Changed
14+
15+
- Improve a conda recipe
16+
17+
### Pull Requests Merged
18+
19+
- [PR_124](https://github.com/mailjet/mailjet-apiv3-python/pull/124) - Release 1.5.1
20+
721
## [1.5.0] - 2025-07-11
822

923
### Added
@@ -175,4 +189,5 @@ We [keep a changelog.](http://keepachangelog.com/)
175189

176190
[1.4.0]: https://github.com/mailjet/mailjet-apiv3-python/releases/tag/v1.4.0
177191
[1.5.0]: https://github.com/mailjet/mailjet-apiv3-python/releases/tag/v1.5.0
178-
[unreleased]: https://github.com/mailjet/mailjet-apiv3-python/releases/tag/v1.5.0...HEAD
192+
[1.5.1]: https://github.com/mailjet/mailjet-apiv3-python/releases/tag/v1.5.1
193+
[unreleased]: https://github.com/mailjet/mailjet-apiv3-python/releases/tag/v1.5.1...HEAD

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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
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)