From 136df21c47efeebd96f3ebaf327d9f9a17854066 Mon Sep 17 00:00:00 2001 From: ShiXin Huang Date: Sun, 21 Jan 2024 23:18:19 +0800 Subject: [PATCH] chore(release): 1.3.2 (#55) * chore(release): 1.3.2 * vscode launch config --- .vscode/launch.json | 20 +++++++++++++++++--- CHANGELOG.md | 22 +++++++++++++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 4 files changed, 40 insertions(+), 6 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 7747800..6e01956 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,11 +4,25 @@ { "type": "lldb", "request": "launch", - "name": "Debug", + "name": "Debug executable 'sca'", "cargo": { - "args": ["build", "--bin=scafalra", "--package=scafalra"], + "args": ["build", "--bin=sca", "--package=scafalra"], "filter": { - "name": "scafalra", + "name": "sca", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in executable 'sca'", + "cargo": { + "args": ["test", "--no-run", "--bin=sca", "--package=scafalra"], + "filter": { + "name": "sca", "kind": "bin" } }, diff --git a/CHANGELOG.md b/CHANGELOG.md index 13f15ef..d12b6c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,29 @@ All notable changes to this project will be documented in this file. +## [1.3.2] - 2024-01-21 + +[e763a43](e763a43519ea4c209df2452c6e2a5b7dffdfdd3d)...[003f99d](003f99d23f62d5f4cf971e44fbde31967ab3f361) + +### Bug Fixes + +- Tarball not removed after cache repository (#52) ([637753d](637753dfbf02e4c021bd496165711064ea0bedae)) + +### Features + +- Tell user similar name when template not found (#51) ([f879132](f8791322e07060b1eee53ade5793b85b65da72ed)) + +### Refactor + +- Support git url for add (#54) ([003f99d](003f99d23f62d5f4cf971e44fbde31967ab3f361)) + +### Testing + +- Test utils (#53) ([0fd29a7](0fd29a7cb0b292637188732f9621233315d8c5ec)) + ## [1.2.2] - 2024-01-06 -[2e3691f](2e3691f87259731eb3c5e9ddc38c511dd2da1e01)...[4474080](4474080cf9bddcdf197cf419fd3476e199b90289) +[2e3691f](2e3691f87259731eb3c5e9ddc38c511dd2da1e01)...[e763a43](e763a43519ea4c209df2452c6e2a5b7dffdfdd3d) ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index cd695f2..4c243f0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1532,7 +1532,7 @@ dependencies = [ [[package]] name = "scafalra" -version = "1.2.2" +version = "1.3.2" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 44bc5c8..ce89b9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scafalra" -version = "1.2.2" +version = "1.3.2" edition = "2021" authors = ["shixinhuang99 "] description = "scafalra(sca) is a command-line interface tool for manage templates"