Skip to content

Commit

Permalink
Added Clone to Config + v1.0.0-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ecton committed Dec 27, 2021
1 parent 2939412 commit a926150
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v1.0.0-rc.2

### Added

- `Config` now implements `Clone` and `Debug`.

## v1.0.0-rc.1

### Added
Expand Down
2 changes: 1 addition & 1 deletion pot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pot"
version = "1.0.0-rc.1"
version = "1.0.0-rc.2"
edition = "2021"
description = "A concise binary serialization format written for `BonsaiDb`."
license = "MIT OR Apache-2.0"
Expand Down
1 change: 1 addition & 0 deletions pot/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ where

/// Serialization and deserialization configuration.
#[must_use]
#[derive(Clone, Debug)]
pub struct Config {
allocation_budget: usize,
}
Expand Down

0 comments on commit a926150

Please sign in to comment.