From 974ce4171b2af590045bf634dede820b95b2a350 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Jan 2024 21:49:14 +0000 Subject: [PATCH] 0.2.0 [skip ci] --- CHANGELOG.md | 13 +++++++++++++ v.mod | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abca267..c20181d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changes +## [0.2.0](https://github.com/prantlf/v-yaml/compare/v0.1.2...v0.2.0) (2024-01-01) + +### Features + +* Remove options from unmarshal_text and unmarshal_file ([a069880](https://github.com/prantlf/v-yaml/commit/a06988019fc7c8af053ebaba8b0de9d5a997ea89)) + +### BREAKING CHANGES + +If you just pass default options to the functions, +just delete them. They do not expect options any more. If you use +non-empty options, replace the function name with `_opt`, +which supports options. + ## [0.1.2](https://github.com/prantlf/v-yaml/compare/v0.1.1...v0.1.2) (2023-12-11) ### Bug Fixes diff --git a/v.mod b/v.mod index db035e1..b8bfcdd 100644 --- a/v.mod +++ b/v.mod @@ -1,7 +1,7 @@ Module { name: 'yaml' description: 'Strictly parse and format YAML data.' - version: '0.1.2' + version: '0.2.0' license: 'MIT' dependencies: ['prantlf.jany'] }