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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),

## [Unreleased]

## [0.1.1] - 2026-08-22

### Fixed

- `--set` overrides are now parsed as TOML, so `--set model__lr=0.01` yields the float `0.01` rather than the string `"0.01"`. Values that are not valid TOML (bare paths, unquoted text, values containing `=`) still fall back to strings.
Expand All @@ -23,5 +25,6 @@ Initial release.
- Opt-in injection of `settings` and `run_dir`, only for functions that declare them in their signature.
- Type annotations throughout, with a `py.typed` marker for downstream type checkers.

[Unreleased]: https://github.com/vgreg/iolaus/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/vgreg/iolaus/compare/v0.1.1...HEAD
[0.1.1]: https://github.com/vgreg/iolaus/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/vgreg/iolaus/releases/tag/v0.1.0
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "iolaus"
version = "0.1.0"
version = "0.1.1"
description = "Decorator-based CLI + config + logging framework for research projects."
readme = "README.md"
requires-python = ">=3.11"
Expand Down Expand Up @@ -78,9 +78,12 @@ module = ["dynaconf", "dynaconf.*"]
ignore_missing_imports = true

[tool.bumpversion]
current_version = "0.1.0"
current_version = "0.1.1"
commit = true
tag = true
# uv.lock records the project's own version, so refresh and stage it as part of
# the bump commit instead of leaving it stale behind the pyproject version.
pre_commit_hooks = ["uv lock", "git add uv.lock"]

[[tool.bumpversion.files]]
filename = "pyproject.toml"
Expand Down
2 changes: 1 addition & 1 deletion src/iolaus/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Iolaus — Decorator-based CLI + config + logging framework for research projects."""

__version__ = "0.1.0"
__version__ = "0.1.1"

from iolaus.decorators import command

Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.