From 03bba7bad0ddab526664937682d74c4cba26de0b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 06:25:08 +0000 Subject: [PATCH] chore(main): release 1.0.0 --- CHANGELOG.md | 17 +++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20e8dfc..2538d92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [1.0.0](https://github.com/mobusoperandi/eelco/compare/v0.2.0...v1.0.0) (2024-02-20) + + +### ⚠ BREAKING CHANGES + +* repl example must have trailing blank line + +### Features + +* expression examples ([23a36fd](https://github.com/mobusoperandi/eelco/commit/23a36fd71059e15fd0f6526d8cc94a84b09468b2)) +* support assignment in repl examples ([221f195](https://github.com/mobusoperandi/eelco/commit/221f195bad953d32966ff90431b81e503f06432f)) + + +### Bug Fixes + +* race between printing to stderr and terminating ([0fe24b8](https://github.com/mobusoperandi/eelco/commit/0fe24b8197bebbbb368db75a6fc4fb58b5f6f6c6)) + ## [0.2.0](https://github.com/mobusoperandi/eelco/compare/v0.1.0...v0.2.0) (2024-01-28) diff --git a/Cargo.lock b/Cargo.lock index 1cd0f3b..aaf312b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -335,7 +335,7 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" [[package]] name = "eelco" -version = "0.2.0" +version = "1.0.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 4ff7a2a..f7d9a30 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "eelco" description = "Nix doctests CLI" -version = "0.2.0" +version = "1.0.0" edition = "2021" license = "MIT" repository = "https://github.com/mobusoperandi/eelco"