Skip to content

Commit

Permalink
Update Store derives (#547)
Browse files Browse the repository at this point in the history
  • Loading branch information
schneems authored Jan 11, 2023
1 parent fa679ea commit b45bd79
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ separate changelogs for each crate were used. If you need to refer to these old

## [Unreleased]

### Fixed

### Added

- libcnb-data: Store struct now supports `clone()` and `default()`. ([#547](https://github.com/heroku/libcnb.rs/pull/547))

### Changed

## [0.11.3] 2023-01-09

### Added
Expand Down
2 changes: 1 addition & 1 deletion libcnb-data/src/store.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use serde::{Deserialize, Serialize};
use toml::value::Table;

#[derive(Debug, Deserialize, Serialize)]
#[derive(Clone, Default, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct Store {
pub metadata: Table,
Expand Down

0 comments on commit b45bd79

Please sign in to comment.