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

## 0.2.0

### Features

- Non-finite floats (NaN, Inf, -Inf) now round-trip. Previously, reading a YAML `.nan`/`.inf`/`-.inf` value and writing it back raised `ValueError`.

### Packaging

- Added License :: OSI Approved :: MIT License trove classifier to pyproject.toml.

### Documentation

Line-ending normalization (LF on output regardless of input) moved from "Limitations" to "Design Decisions" in the README.

### Internal

- Added cargo-deny license compliance checking.
- Extended cargo-deny to also check security advisories against the RustSec database.

## 0.1.0

Initial release. yamltrip is a round-tripping YAML library for Python.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yamltrip"
version = "0.1.0"
version = "0.2.0"
edition = "2024"
license = "MIT"

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 @@ requires = [ "maturin>=1.0,<2.0" ]

[project]
name = "yamltrip"
version = "0.1.0"
version = "0.2.0"
description = "A round-tripping YAML library for Python"
readme = "README.md"
authors = [ { name = "Nathan McDougall", email = "nathan.j.mcdougall@gmail.com" } ]
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.

Loading