Skip to content

Commit

Permalink
Releasing v1.0.0-rc.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ecton committed Dec 31, 2021
1 parent 9449754 commit 9de20e3
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

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.2"
version = "1.0.0-rc.3"
edition = "2021"
description = "A concise binary serialization format written for `BonsaiDb`."
license = "MIT OR Apache-2.0"
Expand Down
15 changes: 14 additions & 1 deletion xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,18 @@ use structopt::StructOpt;

fn main() -> anyhow::Result<()> {
let command = Commands::from_args();
command.execute::<DefaultConfig>()
command.execute::<Config>()
}

enum Config {}

impl khonsu_tools::Config for Config {
type Publish = Self;
type Universal = DefaultConfig;
}

impl khonsu_tools::publish::Config for Config {
fn paths() -> Vec<String> {
vec![String::from("pot")]
}
}

0 comments on commit 9de20e3

Please sign in to comment.