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

## [0.2.0](https://github.com/erikmunkby/yamlium/compare/v0.1.17...v0.2.0) (2026-01-22)


### Features

* comment ownership ([4ff4645](https://github.com/erikmunkby/yamlium/commit/4ff4645c9136cbe972044962a194603184359e31))


### Bug Fixes

* dedented comments no longer raises error ([314fff0](https://github.com/erikmunkby/yamlium/commit/314fff0ddabc366427671801422b6920cc7b837d))
* security updates ([c74d49c](https://github.com/erikmunkby/yamlium/commit/c74d49c6cf707b8d47b87d336f218880ed5b052d))

## [0.1.17](https://github.com/erikmunkby/yamlium/compare/v0.1.16...v0.1.17) (2025-12-28)


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 = "yamlium"
version = "0.1.17"
version = "0.2.0"
requires-python = ">=3.10"
description = "Fast, modern yaml parser and manipulator"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion yamlium/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.17"
__version__ = "0.2.0"
import json
from pathlib import Path

Expand Down