From 9de20e32034a9a14e4071e3e347113e551ef774b Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Fri, 31 Dec 2021 07:42:22 -0800 Subject: [PATCH] Releasing v1.0.0-rc.3 --- CHANGELOG.md | 2 +- pot/Cargo.toml | 2 +- xtask/src/main.rs | 15 ++++++++++++++- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6449151f..c0b8901a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 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). -## Unreleased +## v1.0.0-rc.3 ### Added diff --git a/pot/Cargo.toml b/pot/Cargo.toml index 3a1ac384..f2fc674a 100644 --- a/pot/Cargo.toml +++ b/pot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pot" -version = "1.0.0-rc.2" +version = "1.0.0-rc.3" edition = "2021" description = "A concise binary serialization format written for `BonsaiDb`." license = "MIT OR Apache-2.0" diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 330ca0c5..b82e55c8 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -6,5 +6,18 @@ use structopt::StructOpt; fn main() -> anyhow::Result<()> { let command = Commands::from_args(); - command.execute::() + command.execute::() +} + +enum Config {} + +impl khonsu_tools::Config for Config { + type Publish = Self; + type Universal = DefaultConfig; +} + +impl khonsu_tools::publish::Config for Config { + fn paths() -> Vec { + vec![String::from("pot")] + } }