Skip to content

Commit 10054b7

Browse files
committed
release: bump version to 0.1.6 for PyPI
1 parent fa7f8d6 commit 10054b7

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project are documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.1.2] - 2026-02-20
8+
## [0.1.6] - 2026-02-20
99

1010
### Added
1111
- Harness strategy selector with `tool_call` (default) and opt-in `codemode`.
@@ -29,7 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2929
- Added explicit CodeMode guardrail policy documentation with blocked API classes and runtime limit defaults.
3030
- Codemode path remains opt-in; default harness behavior remains strict baseline `strategy=tool_call`.
3131

32-
## [0.1.1] - 2026-02-15
32+
## [0.1.5] - 2026-02-15
3333

3434
Initial public release of **RLM Code**.
3535

@@ -55,4 +55,4 @@ Initial public release of **RLM Code**.
5555
- Unsafe local `exec` usage preserved only as an explicit, opt-in path for advanced development scenarios.
5656

5757
[0.1.5]: https://github.com/SuperagenticAI/rlm-code/releases/tag/v0.1.5
58-
[0.1.2]: https://github.com/SuperagenticAI/rlm-code/releases/tag/v0.1.2
58+
[0.1.6]: https://github.com/SuperagenticAI/rlm-code/releases/tag/v0.1.6

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RLM Code implements the [Recursive Language Models](https://arxiv.org/abs/2502.0
2525

2626
RLM Code wraps this algorithm in an interactive terminal UI with built-in benchmarks, trajectory replay, and observability.
2727

28-
## Release v0.1.2
28+
## Release v0.1.6
2929

3030
This release adds the new CodeMode path as an opt-in harness strategy.
3131

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<p class="rlm-tagline">Research Playground & Evaluation OS for Recursive Language Model Agentic Systems</p>
88

9-
<span class="rlm-badge rlm-badge--purple">v0.1.2</span>
9+
<span class="rlm-badge rlm-badge--purple">v0.1.6</span>
1010
<span class="rlm-badge rlm-badge--green">Python 3.11+</span>
1111
<span class="rlm-badge rlm-badge--blue">Apache 2.0</span>
1212

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "rlm-code"
7-
version = "0.1.2"
7+
version = "0.1.6"
88
description = "RLM Code: Research Playground & Evaluation OS for Recursive Language Model Agentic Systems"
99
readme = "README.md"
1010
license = "Apache-2.0"

rlm_code/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
through natural language interactions.
66
"""
77

8-
__version__ = "0.1.2"
8+
__version__ = "0.1.6"
99
__author__ = "Super Agentic AI"

rlm_code/mcp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
)
1818
from .session_wrapper import MCPSessionWrapper
1919

20-
__version__ = "0.1.2"
20+
__version__ = "0.1.6"
2121

2222
__all__ = [
2323
"MCPClientManager",

0 commit comments

Comments
 (0)