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
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"project_repo_name": "rook",
"project_readthedocs_name": "rook",
"project_short_description": "A WPS service for roocs.",
"version": "1.1.1",
"version": "1.2.0",
"open_source_license": "Apache Software License 2.0",
"http_port": "5000",
"use_pytest": "y",
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,29 @@ Changes
Unreleased
==========

1.2.0 (2026-06-18)
==================

* Added preliminary support for Kerchunk reference inputs, including URL-aware
detection for JSON, Zstandard, and Parquet references.
* Added preliminary S3 support by declaring ``s3fs``, allowing direct ``s3://``
NetCDF inputs, and preparing optional S3 base-path mapping for catalog-backed
processing paths.
* Added preliminary support for opening local and S3-backed Zarr stores as
operation inputs.
* Added a common dataset-opening API with immutable ``DatasetSource`` inputs,
explicit NetCDF, Zarr, and Kerchunk dispatch, and independent transport
detection and configuration.
* Centralized Rook configuration loading, project lookup, storage roots, and
shared S3 options, with strict validation that avoids exposing configured
values in errors.
* Simplified catalog consolidation, including independent handling of mixed
direct and catalog inputs and per-project catalog caching.
* Replaced captured configuration globals and aligned the development setup
with ``prek``.
* Live S3 integration coverage remains deferred; current object-storage
behavior is covered by unit and characterization tests.


1.1.1 (2026-06-17)
==================
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM continuumio/miniconda3
ARG DEBIAN_FRONTEND=noninteractive
ENV PIP_ROOT_USER_ACTION=ignore
LABEL org.opencontainers.image.authors=https://github.com/roocs/rook
LABEL Description="rook WPS" Vendor="Birdhouse" Version="1.1.1"
LABEL Description="rook WPS" Vendor="Birdhouse" Version="1.2.0"

# Set the working directory to /code
WORKDIR /code
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@ Use bump-my-version_ to release a new version.
Patch Release Quickstart
^^^^^^^^^^^^^^^^^^^^^^^^

Minimal patch release flow (example: ``1.1.1``):
Minimal patch release flow (example: ``1.2.1``):

.. code-block:: console

$ edit CHANGELOG.rst
$ make conda-spec
$ bump-my-version bump --new-version 1.1.1 patch
$ bump-my-version bump --new-version 1.2.1 patch
$ git push
$ git push --tags

Expand Down
Loading