Skip to content

Commit

Permalink
bump: version 0.1.0 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 9, 2023
1 parent fafe94e commit 8d88133
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .cz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cz_conventional_commits"
tag_format = "v$version"
version_type = "semver"
version = "0.1.0"
version = "0.2.0"
update_changelog_on_bump = true
major_version_zero = true
version_files = [
Expand Down
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
## v0.2.0 (2023-06-09)

### BREAKING CHANGE

- `m` for materials was replaced by `&` because reading a material prefixed with an `m` doesn't read well. For eexample `m{bowl}` is mentally read as `mbowl` when compared to the silent `&{bowl}`. To migrate replace in your recipes the `m{` for `&{`

### Feat

- add recipe cli `recp`
- add recipe references
- add parser for amout (quantity + unit)
- add backstory section
- recipe parser

### Fix

- prepare for release
- improve display of instructions
- use `&` insetad if `m` for materials
- fail on unclosed curly and paren
- update description in cargo
- parse end of comment and spaces to prevent multi spaces
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = [
]

[workspace.package]
version = "0.1.0"
version = "0.2.0"
edition = "2021"
description = "Write recipes in a human readable and machine parseable language"
keywords = ["recipes", "cooking", "markup-language", "recipe-lang"]
Expand Down

0 comments on commit 8d88133

Please sign in to comment.