Skip to content

Commit

Permalink
chore: 🔧 remove .vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
noshita committed Mar 11, 2024
1 parent ba8a08e commit 7bd5512
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 12 deletions.
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -341,11 +341,6 @@ dkms.conf
### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Global/VisualStudioCode.gitignore

.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets

# Local History for Visual Studio Code
.history/
Expand Down
6 changes: 0 additions & 6 deletions .vscode/settings.json

This file was deleted.

22 changes: 21 additions & 1 deletion doc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,24 @@ poetry run poetry2conda pyproject.toml environment.yml
poetry export > requirements.txt
poetry run liccheck -s pyproject.toml

```
```

### Release Please

#### prefix

* fix: which represents bug fixes, and correlates to a SemVer patch.
* feat: which represents a new feature, and correlates to a SemVer minor.
* feat!:, or fix!:, refactor!:, etc., which represent a breaking change (indicated by the !) and will result in a SemVer major.


#### バージョンの変更

gitのcommit bodyに`Release-As: x.x.x``x.x.x`は指定したいバージョン)と記載することで,そのバージョンのPRが作成される.

```sh
git commit --allow-empty -m "chore: 🔧 release X.X.X" -m "Release-As: X.X.X"
```
`X.X.X`は指定したいバージョン番号.

* [How do I change the version number?| Release Please](https://github.com/googleapis/release-please?tab=readme-ov-file#how-do-i-change-the-version-number)

0 comments on commit 7bd5512

Please sign in to comment.