Skip to content

Commit

Permalink
feat: adds support for python 3.12
Browse files Browse the repository at this point in the history
chore: adds release please configuration

Signed-off-by: Vincent Biret <[email protected]>
  • Loading branch information
baywet committed Jun 19, 2024
1 parent 7f7ea06 commit 991a5e0
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .github/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
manifest: true
primaryBranch: main
handleGHRelease: true
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "1.0.1"
}
7 changes: 3 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,28 @@

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.1] - 2024-04-22

### Added

### Changed
-Enabled Large File Upload and Page iterator support

-Enabled Large File Upload and Page iterator support

## [1.0.0] - 2023-10-31

### Added

### Changed

- GA release.

## [1.0.0a6] - 2023-10-12

### Added

### Changed

- Replaced default transport with graph transport when using custom client with proxy.

## [1.0.0a5] - 2023-06-20
Expand Down
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ build-backend = "setuptools.build_meta"

[project]
name = "msgraph-core"
version = "1.0.0"
# The SDK version
# x-release-please-start-version
version = "1.0.1"
# x-release-please-end
authors = [{name = "Microsoft", email = "[email protected]"}]
description = "Core component of the Microsoft Graph Python SDK"
dependencies = [
Expand All @@ -23,6 +26,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
]

Expand Down
23 changes: 23 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"bootstrap-sha": "69079661c12dbfe6bf0c7cc379597d0c6c49e6f8",
"exclude-paths": [
".git",
".idea",
".github",
".vscode"
],
"release-type": "python",
"include-component-in-tag": false,
"include-v-in-tag": true,
"packages": {
".": {
"package-name": "msgraph-core",
"changelog-path": "CHANGELOG.md",
"extra-files": [
"pyproject.toml",
"msgraph-core/_constants.py"
]
}
},
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}
3 changes: 3 additions & 0 deletions src/msgraph_core/_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,8 @@
"""
DEFAULT_REQUEST_TIMEOUT = 100
DEFAULT_CONNECTION_TIMEOUT = 30
# The SDK version
# x-release-please-start-version
SDK_VERSION = '1.0.1'
# x-release-please-end
MS_DEFAULT_SCOPE = 'https://graph.microsoft.com/.default'

0 comments on commit 991a5e0

Please sign in to comment.