From 1b805ebf896c536b6e3a291d92616b8f5a5831ce Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Fri, 10 Jan 2025 09:40:27 +0100 Subject: [PATCH] chore(release): v0.0.1 (#3) chore(release): 0.0.1 Co-authored-by: cuddle-please Reviewed-on: https://git.front.kjuulh.io/kjuulh/voidpin/pulls/3 --- CHANGELOG.md | 20 ++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..c5b42bb --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,20 @@ +# Changelog +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] + +## [0.0.1] - 2025-01-10 + +### Added +- add initial copy command + +### Docs +- add example of call +- add a small readme with intent + +### Other +- add stub for remote copier +- extract local copier to struct diff --git a/Cargo.toml b/Cargo.toml index 0a83fe1..167ce50 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.1.0" +version = "0.0.1" [workspace.dependencies] voidpin = { path = "crates/voidpin" }