Skip to content

Commit def61e5

Browse files
committed
update for release v0.1.0
1 parent 267f544 commit def61e5

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/test.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525
pip install .
2626
pip install -r requirements-dev.txt
2727
28-
- name: Add tag to latest commit for testing
29-
run: |
30-
git config user.name 'github-actions'
31-
git config user.email '41898282+github-actions[bot]@users.noreply.github.com'
32-
git push --delete origin latest || true
33-
git tag -a latest -m 'Retag latest commit'
34-
git push origin latest
28+
# - name: Add tag to latest commit for testing
29+
# run: |
30+
# git config user.name 'github-actions'
31+
# git config user.email '41898282+github-actions[bot]@users.noreply.github.com'
32+
# git push --delete origin latest || true
33+
# git tag -a latest -m 'Retag latest commit'
34+
# git push origin latest
3535

3636
- name: Run tests and collect coverage
3737
run: |

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ repos:
3434
language: system
3535
types: [python]
3636
- repo: https://github.com/shenxianpeng/cpp-linter-hooks
37-
rev: d3fc88c84b93708b4e5eb12c72cdbf421599cd40
37+
rev: v0.1.0
3838
hooks:
3939
- id: clang-format
4040
args: [--style=Google, --version=13]

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The example of using custom config: `.clang-format` and `.clang-tidy`
2727
```yaml
2828
repos:
2929
- repo: https://github.com/shenxianpeng/cpp-linter-hooks
30-
rev: v0.1.0 # Use the ref you want to point at
30+
rev: v0.1.0
3131
hooks:
3232
- id: clang-format
3333
args: [--style=.clang-format] # path/to/.clang-format
@@ -40,7 +40,7 @@ The example of using any version of [clang-tools](https://github.com/shenxianpen
4040
```yaml
4141
repos:
4242
- repo: https://github.com/shenxianpeng/cpp-linter-hooks
43-
rev: v0.1.0 # Use the ref you want to point at
43+
rev: v0.1.0
4444
hooks:
4545
- id: clang-format
4646
args: [--style=Google, --version=13]

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
name='cpp_linter_hooks',
66
description='Automatically check c/c++ with clang-format and clang-tidy',
77
url='https://github.com/shenxianpeng/cpp-linter-hooks',
8-
version='0.0.1',
8+
version='0.1.0',
99
author="Peter Shen",
1010
author_email="[email protected]",
1111
license="MIT",

0 commit comments

Comments
 (0)