Skip to content

Commit

Permalink
bump: version 0.6.0 → 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 24, 2024
1 parent dc9c4cc commit 9786c47
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 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.6.0"
version = "0.7.0"
update_changelog_on_bump = true
major_version_zero = true
version_files = [
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## v0.7.0 (2024-04-24)

### BREAKING CHANGE

- json output is no longer like:
```json
{"token": "Ingredient", "name": "foo", "amount": "1", "unit": "gr"}
```
now:
```json
{"token": "Ingredient", "content": {"name": "foo", "amount": "1", "unit": "gr"}}
```
The problem is that serde was failing to serialize enum variants that contained a single string

### Fix

- use serde content for token enum

## v0.6.0 (2024-04-24)

### BREAKING CHANGE
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/recipe-parser", "crates/recp"]
resolver = "2"

[workspace.package]
version = "0.6.0"
version = "0.7.0"
edition = "2021"
description = "Write recipes understood by humans and machines"
keywords = ["recipes", "cooking", "markup-language", "recipe-lang"]
Expand Down
2 changes: 1 addition & 1 deletion crates/recp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ categories = ["command-line-utilities"]
[dependencies]
Inflector = "0.11.4"
clap = { version = "4.3.1", features = ["derive"] }
recipe-parser = { path = "../recipe-parser", version = "0.6.0" }
recipe-parser = { path = "../recipe-parser", version = "0.7.0" }
console = "0.15.7"
tabwriter = "1.2.1"

0 comments on commit 9786c47

Please sign in to comment.