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
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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.1.0/).

## [Unreleased]
## [0.1.1] - 2026-05-10

### Added

Expand All @@ -25,6 +25,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
- `NodeResult` is now `NodeResult[T]` (PEP 695 generic). Existing references default to `NodeResult[Any]` and remain backwards compatible.
- `@task` is now flow-aware: outside a `@flow` body it executes normally; inside one it records the call and returns `FlowFuture[T]`. The same decorator works for both the legacy `Pipeline` and the new `@flow` API.

### Docs

- Migrated documentation site from Docusaurus 3 to Fumadocs 16 (Next.js 16 + Tailwind v4 + pnpm). Same deploy URL (`byteveda.github.io/dagron/`). Three sidebar root sections: **Guide**, **Typed & Reactive**, **API Reference**. New reusable component library: `ui/` primitives, MDX globals (`DagDiagram`, `StatusBadge`, `EffectBadge`, `FeatureCard`/`Grid`, `ApiSignature`, `ParamTable`), and a client-side themed Mermaid component.

## [0.1.0] - 2026-03-06

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/dagron-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dagron-core"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.83"
description = "Fast DAG construction, analysis, and scheduling engine"
Expand Down
2 changes: 1 addition & 1 deletion crates/dagron-py/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dagron-py"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.83"

Expand Down
2 changes: 1 addition & 1 deletion crates/dagron-ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dagron-ui"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.83"

Expand Down
2 changes: 1 addition & 1 deletion py_src/dagron/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
# Module-level plugin manager singleton
_plugin_manager = PluginManager()

__version__ = "0.1.0"
__version__ = "0.1.1"


def __getattr__(name: str) -> object:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "dagron"
version = "0.1.0"
version = "0.1.1"
description = "A fast Rust-backed DAG engine for Python"
readme = "README.md"
requires-python = ">=3.12"
Expand Down
Loading