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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog for oda_reader

## 1.3.2 (2025-12-19)
- Updates bulk file dataflow version to 1.6 to match OECD's latest schema.

## 1.3.1 (2025-06-27)
- Improves cache management for very large files. Introduces tests and improved documentation

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "oda_reader"
version = "1.3.1"
version = "1.3.2"
description = "A simple package to import ODA data from the OECD's API and AidData's database"
readme = "README.md"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/oda_reader/dac2a.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from oda_reader.download.download_tools import download

DATAFLOW_ID: str = "DSD_DAC2@DF_DAC2A"
DATAFLOW_VERSION: str = "1.4"
DATAFLOW_VERSION: str = "1.6"


@cache_info
Expand Down
2 changes: 1 addition & 1 deletion src/oda_reader/download/download_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ def bulk_download_aiddata(


def get_bulk_file_id(
flow_url: str, search_string: str, latest_flow: float = 1.4, retries: int = 0
flow_url: str, search_string: str, latest_flow: float = 1.6, retries: int = 0
) -> str:
"""
Retrieves the full bulk file ID from the OECD dataflow.
Expand Down