Skip to content
Merged
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: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -234,5 +234,3 @@ dev/
# pytest cache
.pytest_cache/
pytestdebug.log

*/_version.py
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ We [keep a changelog.](http://keepachangelog.com/)

## [Unreleased]

## [1.5.1] - 2025-07-14

### Removed

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

### Changed

- Improve a conda recipe

### Pull Requests Merged

- [PR_124](https://github.com/mailjet/mailjet-apiv3-python/pull/124) - Release 1.5.1

## [1.5.0] - 2025-07-11

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

[1.4.0]: https://github.com/mailjet/mailjet-apiv3-python/releases/tag/v1.4.0
[1.5.0]: https://github.com/mailjet/mailjet-apiv3-python/releases/tag/v1.5.0
[unreleased]: https://github.com/mailjet/mailjet-apiv3-python/releases/tag/v1.5.0...HEAD
[1.5.1]: https://github.com/mailjet/mailjet-apiv3-python/releases/tag/v1.5.1
[unreleased]: https://github.com/mailjet/mailjet-apiv3-python/releases/tag/v1.5.1...HEAD
2 changes: 2 additions & 0 deletions conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ test:
- samples
source_files:
- tests/test_client.py
- tests/test_version.py
- test.py
- tests/doc_tests/files/data.csv
requires:
Expand All @@ -50,6 +51,7 @@ test:
- pip check
# TODO: Add environment variables for tests
- pytest tests/test_client.py -vv
- pytest tests/test_version.py -vv
- pytest test.py -vv

about:
Expand Down
1 change: 1 addition & 0 deletions mailjet_rest/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "1.5.1"
2 changes: 1 addition & 1 deletion test.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def test_user_agent(self) -> None:
None
"""
self.client = Client(auth=self.auth, version="v3.1")
self.assertEqual(self.client.config.user_agent, "mailjet-apiv3-python/v1.5.0")
self.assertEqual(self.client.config.user_agent, "mailjet-apiv3-python/v1.5.1")


class TestCsvImport(unittest.TestCase):
Expand Down
Loading