Skip to content

Commit

Permalink
Merge pull request #6 from riza-io/release-please--branches--main--ch…
Browse files Browse the repository at this point in the history
…anges--next

release: 0.1.0-alpha.2
  • Loading branch information
andrewmbenton authored Apr 18, 2024
2 parents e733331 + 502a267 commit 6c3ba42
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0-alpha.1"
".": "0.1.0-alpha.2"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.1.0-alpha.2 (2024-04-18)

Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/riza-io/riza-api-python/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)

### Features

* **api:** update via SDK Studio ([#4](https://github.com/riza-io/riza-api-python/issues/4)) ([c935203](https://github.com/riza-io/riza-api-python/commit/c9352037d128ddf9a11ffd70b69143d1f1bbb74b))

## 0.1.0-alpha.1 (2024-04-17)

Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/riza-io/riza-api-python/compare/v0.0.1-alpha.0...v0.1.0-alpha.1)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Riza Python API library

[![PyPI version](https://img.shields.io/pypi/v/riza.svg)](https://pypi.org/project/riza/)
[![PyPI version](https://img.shields.io/pypi/v/rizaio.svg)](https://pypi.org/project/rizaio/)

The Riza Python library provides convenient access to the Riza REST API from any Python 3.7+
application. The library includes type definitions for all request params and response fields,
Expand All @@ -16,7 +16,7 @@ The REST API documentation can be found [on docs.riza.io](https://docs.riza.io).

```sh
# install from PyPI
pip install --pre riza
pip install --pre rizaio
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "riza"
version = "0.1.0-alpha.1"
name = "rizaio"
version = "0.1.0-alpha.2"
description = "The official Python library for the riza API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
12 changes: 6 additions & 6 deletions requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ annotated-types==0.6.0
# via pydantic
anyio==4.1.0
# via httpx
# via riza
# via rizaio
argcomplete==3.1.2
# via nox
attrs==23.1.0
Expand All @@ -26,7 +26,7 @@ dirty-equals==0.6.0
distlib==0.3.7
# via virtualenv
distro==1.8.0
# via riza
# via rizaio
exceptiongroup==1.1.3
# via anyio
filelock==3.12.4
Expand All @@ -37,7 +37,7 @@ httpcore==1.0.2
# via httpx
httpx==0.25.2
# via respx
# via riza
# via rizaio
idna==3.4
# via anyio
# via httpx
Expand All @@ -60,7 +60,7 @@ pluggy==1.3.0
py==1.11.0
# via pytest
pydantic==2.4.2
# via riza
# via rizaio
pydantic-core==2.10.1
# via pydantic
pyright==1.1.353
Expand All @@ -80,7 +80,7 @@ six==1.16.0
sniffio==1.3.0
# via anyio
# via httpx
# via riza
# via rizaio
time-machine==2.9.0
tomli==2.0.1
# via mypy
Expand All @@ -89,7 +89,7 @@ typing-extensions==4.8.0
# via mypy
# via pydantic
# via pydantic-core
# via riza
# via rizaio
virtualenv==20.24.5
# via nox
zipp==3.17.0
Expand Down
12 changes: 6 additions & 6 deletions requirements.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,32 +12,32 @@ annotated-types==0.6.0
# via pydantic
anyio==4.1.0
# via httpx
# via riza
# via rizaio
certifi==2023.7.22
# via httpcore
# via httpx
distro==1.8.0
# via riza
# via rizaio
exceptiongroup==1.1.3
# via anyio
h11==0.14.0
# via httpcore
httpcore==1.0.2
# via httpx
httpx==0.25.2
# via riza
# via rizaio
idna==3.4
# via anyio
# via httpx
pydantic==2.4.2
# via riza
# via rizaio
pydantic-core==2.10.1
# via pydantic
sniffio==1.3.0
# via anyio
# via httpx
# via riza
# via rizaio
typing-extensions==4.8.0
# via pydantic
# via pydantic-core
# via riza
# via rizaio
2 changes: 1 addition & 1 deletion src/riza/_base_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def __init__(

if max_retries is None: # pyright: ignore[reportUnnecessaryComparison]
raise TypeError(
"max_retries cannot be None. If you want to disable retries, pass `0`; if you want unlimited retries, pass `math.inf` or a very high number; if you want the default behavior, pass `riza.DEFAULT_MAX_RETRIES`"
"max_retries cannot be None. If you want to disable retries, pass `0`; if you want unlimited retries, pass `math.inf` or a very high number; if you want the default behavior, pass `rizaio.DEFAULT_MAX_RETRIES`"
)

def _enforce_trailing_slash(self, url: URL) -> URL:
Expand Down
2 changes: 1 addition & 1 deletion src/riza/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "riza"
__version__ = "0.1.0-alpha.1" # x-release-please-version
__version__ = "0.1.0-alpha.2" # x-release-please-version

0 comments on commit 6c3ba42

Please sign in to comment.