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
4 changes: 2 additions & 2 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ management:
docVersion: 0.9.0
speakeasyVersion: 1.551.0
generationVersion: 2.610.0
releaseVersion: 0.5.1
configChecksum: a9031c6366b1f907390cb3cc30edf32f
releaseVersion: 0.5.2
configChecksum: 6a95613bf15bc0a00a38f7c157809ca4
repoURL: https://github.com/gleanwork/api-client-python.git
installationURL: https://github.com/gleanwork/api-client-python.git
published: true
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ generation:
generateNewTests: true
skipResponseBodyAssertions: true
python:
version: 0.5.1
version: 0.5.2
additionalDependencies:
dev: {}
main: {}
Expand Down
8 changes: 4 additions & 4 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ speakeasyVersion: 1.551.0
sources:
Glean API:
sourceNamespace: glean-api-specs
sourceRevisionDigest: sha256:54c0b7f53a738ea4d896b6041514ca6308f8fad84fb2ce9ca39e5c4cb5f52afc
sourceRevisionDigest: sha256:8f21c39ef4c0f7b292ea72e3a7ec057db295ddfd2814e99c7a753fd3773d23cb
sourceBlobDigest: sha256:e03e7548ba6cb180d1f94e0a3912501f47f1f9944c0631dd752b396e56513f1f
tags:
- latest
- speakeasy-sdk-regen-1748050632
- speakeasy-sdk-regen-1748125845
Glean Client API:
sourceNamespace: glean-client-api
sourceRevisionDigest: sha256:4edc63ad559e4f2c9fb9ebf5edaaaaa9269f1874d271cfd84b441d6dacac43d2
Expand All @@ -17,10 +17,10 @@ targets:
glean:
source: Glean API
sourceNamespace: glean-api-specs
sourceRevisionDigest: sha256:54c0b7f53a738ea4d896b6041514ca6308f8fad84fb2ce9ca39e5c4cb5f52afc
sourceRevisionDigest: sha256:8f21c39ef4c0f7b292ea72e3a7ec057db295ddfd2814e99c7a753fd3773d23cb
sourceBlobDigest: sha256:e03e7548ba6cb180d1f94e0a3912501f47f1f9944c0631dd752b396e56513f1f
codeSamplesNamespace: glean-api-specs-python-code-samples
codeSamplesRevisionDigest: sha256:429f26356a61f026ee2902e9009622a7cd23480916a73af4fd282eb192505cf1
codeSamplesRevisionDigest: sha256:539ebe8f0df16c3e87e9f927ad10b3558a8dc28721c86ad316de94314e51a906
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,14 @@ Based on:
### Generated
- [python v0.5.1] .
### Releases
- [PyPI v0.5.1] https://pypi.org/project/glean/0.5.1 - .
- [PyPI v0.5.1] https://pypi.org/project/glean/0.5.1 - .

## 2025-05-24 22:30:25
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.551.0 (2.610.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v0.5.2] .
### Releases
- [PyPI v0.5.2] https://pypi.org/project/glean/0.5.2 - .
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "glean-api-client"
version = "0.5.1"
version = "0.5.2"
description = "Python Client SDK Generated by Speakeasy."
authors = [{ name = "Glean Technologies, Inc." }]
license = "MIT"
Expand Down
3 changes: 3 additions & 0 deletions src/glean/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
from pkgutil import extend_path

__path__ = extend_path(__path__, __name__)

from ._version import (
__title__,
Expand Down
4 changes: 2 additions & 2 deletions src/glean/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
import importlib.metadata

__title__: str = "glean"
__version__: str = "0.5.1"
__version__: str = "0.5.2"
__openapi_doc_version__: str = "0.9.0"
__gen_version__: str = "2.610.0"
__user_agent__: str = "speakeasy-sdk/python 0.5.1 2.610.0 0.9.0 glean"
__user_agent__: str = "speakeasy-sdk/python 0.5.2 2.610.0 0.9.0 glean"

try:
if __package__ is not None:
Expand Down