Skip to content

Commit e327fa7

Browse files
committed
Bump version to v0.2.0
1 parent 5594389 commit e327fa7

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

.pre-commit-config.yaml

-7
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,3 @@ repos:
3333
description: Run all tests
3434
language: system
3535
types: [python]
36-
- repo: https://github.com/shenxianpeng/cpp-linter-hooks
37-
rev: v0.1.0
38-
hooks:
39-
- id: clang-format
40-
args: [--style=Google, --version=13]
41-
- id: clang-tidy
42-
args: [--checks=testing/.clang-tidy, --version=13]

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Add this to your `.pre-commit-config.yaml`
1414
```yaml
1515
repos:
1616
- repo: https://github.com/shenxianpeng/cpp-linter-hooks
17-
rev: v0.1.0 # Use the ref you want to point at
17+
rev: v0.2.0 # Use the ref you want to point at
1818
hooks:
1919
- id: clang-format
2020
args: [--style=Google] # Other coding style: LLVM, GNU, Chromium, Microsoft, Mozilla, WebKit.
@@ -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
30+
rev: v0.2.0
3131
hooks:
3232
- id: clang-format
3333
args: [--style=file] # to load .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
43+
rev: v0.2.0
4444
hooks:
4545
- id: clang-format
4646
args: [--style=file, --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.1.0',
8+
version='0.2.0',
99
author="Peter Shen",
1010
author_email="xianpeng.shen@gmail.com",
1111
license="MIT",

0 commit comments

Comments
 (0)