From 37dcfd725a18ac4c29aa217e81a4b72e21987f4a Mon Sep 17 00:00:00 2001 From: Eric Swanson Date: Fri, 8 Nov 2024 07:54:36 -0800 Subject: [PATCH] chore: release dfx-core 0.1.0 --- Cargo.lock | 2 +- src/dfx-core/CHANGELOG.md | 19 +++++++++++++++++++ src/dfx-core/Cargo.toml | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 src/dfx-core/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index 36a23f6c0b..72347e06e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1608,7 +1608,7 @@ dependencies = [ [[package]] name = "dfx-core" -version = "0.1.0" +version = "0.1.1" dependencies = [ "aes-gcm", "argon2", diff --git a/src/dfx-core/CHANGELOG.md b/src/dfx-core/CHANGELOG.md new file mode 100644 index 0000000000..8caf055ffc --- /dev/null +++ b/src/dfx-core/CHANGELOG.md @@ -0,0 +1,19 @@ +# 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.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.1] - 2024-11-08 + +### Added + + - get_version_from_cache_path function to get the version from the cache path + - DfxInterfaceBuilder: with_extension_manager and with_extension_manager_from_cache_path methods + +## [0.1.0] - 2024-09-01 + +Initial Version diff --git a/src/dfx-core/Cargo.toml b/src/dfx-core/Cargo.toml index 5bbfec0a45..577b717fbf 100644 --- a/src/dfx-core/Cargo.toml +++ b/src/dfx-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dfx-core" -version = "0.1.0" +version = "0.1.1" authors.workspace = true edition.workspace = true repository.workspace = true