Skip to content

Commit 3e4ab4b

Browse files
committed
bump version
1 parent 443ee74 commit 3e4ab4b

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGES.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
Almost every release features a lot of bugfixes but those are not listed here.
44

5+
## Version 2.1.2 (2025-04-08)
6+
- Calendar: list_calendars now allows pagination (Thanks @RogerSelwyn)
7+
- Query: added new experimental Query object that will replace the current Query object in the future. Available in utils.query.
8+
- Message: non-draft messages can be saved. This allows to edit non-draft messages.
9+
- Connection: proxies, verify_ssl and timeout are now honored in the msal http client
10+
- Message: new method `get_eml_as_object` to retrieve attached eml as Message objects.
11+
512
## Version 2.1.1 (2025-03-20)
613
- Tasks: support unsetting tasks due and reminder (Thanks @RogerSelwyn)
714
- Removed Office 365 tasks file (api was deprecated on november 2024)

O365/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.1.1'
1+
__version__ = '2.1.2'

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
dynamic = ["license"]
33
name = "o365"
4-
version = "2.1.1"
4+
version = "2.1.2"
55
description = "O365 - Microsoft Graph and Office 365 API made easy"
66
readme = "README.md"
77
requires-python = ">=3.9"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup, find_packages
44

55

6-
VERSION = '2.1.1'
6+
VERSION = '2.1.2'
77

88
# Available classifiers: https://pypi.org/pypi?%3Aaction=list_classifiers
99
CLASSIFIERS = [

0 commit comments

Comments
 (0)