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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ 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/).

## [1.0.0rc3] - 2026-05-23

**Breaking changes**

### Removed

- Refactors Transport to no longer have HTTPX as dependency
- Removed AsyncClient, now only a synchronous OpenAQ client is exported

## [1.0.0rc2] - 2026-02-24

### Updated
Expand Down
8 changes: 3 additions & 5 deletions openaq/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@

import logging

__version__ = "1.0.0rc2"
__version__ = "1.0.0rc3"


logger = logging.getLogger(__name__)
logger.addHandler(logging.NullHandler())


from ._async.client import AsyncOpenAQ as AsyncOpenAQ
from ._sync.client import OpenAQ as OpenAQ
from .shared.exceptions import (
from .client import OpenAQ as OpenAQ
from .core.exceptions import (
ApiKeyMissingError,
BadGatewayError,
BadRequestError,
Expand All @@ -30,7 +29,6 @@

__all__ = [
"OpenAQ",
"AsyncOpenAQ",
"IdentifierOutOfBoundsError",
"ApiKeyMissingError",
"NotAuthorizedError",
Expand Down
304 changes: 0 additions & 304 deletions openaq/_async/client.py

This file was deleted.

29 changes: 0 additions & 29 deletions openaq/_async/models/base.py

This file was deleted.

Loading
Loading