Skip to content

Commit

Permalink
chore(release): 1.3.2 (#55)
Browse files Browse the repository at this point in the history
* chore(release): 1.3.2

* vscode launch config
  • Loading branch information
shixinhuang99 committed Jan 21, 2024
1 parent 003f99d commit 136df21
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 6 deletions.
20 changes: 17 additions & 3 deletions .vscode/launch.json
Expand Up @@ -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"
}
},
Expand Down
22 changes: 21 additions & 1 deletion CHANGELOG.md
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "scafalra"
version = "1.2.2"
version = "1.3.2"
edition = "2021"
authors = ["shixinhuang99 <shixinhuang99@gmail.com>"]
description = "scafalra(sca) is a command-line interface tool for manage templates"
Expand Down

0 comments on commit 136df21

Please sign in to comment.