Skip to content

Commit 19311b3

Browse files
committed
repo: update license headers
1 parent da363e7 commit 19311b3

8 files changed

+18
-13
lines changed

Diff for: .editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ max_line_length = 120
1313

1414
[{Makefile,go.mod,go.sum,*.go,.gitmodules}]
1515
indent_style = tab
16-
indent_size = 8
16+
indent_size = 4
1717

1818
[*.md]
1919
indent_size = 4

Diff for: .vscode/settings.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"[go]": {
3-
"editor.formatOnSave": false,
4-
"editor.defaultFormatter": "golang.go",
5-
"editor.codeActionsOnSave": {
6-
"source.organizeImports": false
7-
}
8-
}
9-
}
2+
"[go]": {
3+
"editor.formatOnSave": false,
4+
"editor.defaultFormatter": "golang.go",
5+
"editor.codeActionsOnSave": {
6+
"source.organizeImports": false
7+
}
8+
}
9+
}

Diff for: CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Types of changes:
1313
- `Fixed` for any bug fixes.
1414
- `Security` in case of vulnerabilities.
1515

16+
## [0.4]
17+
1618
## [0.3]
1719

1820
### Changed
@@ -40,4 +42,4 @@ Types of changes:
4042
[@slavaromanov]: https://github.com/slavaromanov
4143
[@GTB3NW]: https://github.com/GTB3NW
4244
[PR#4]: https://github.com/johnbellone/grpc-middleware-sentry/pull/4
43-
[PR#3]: https://github.com/johnbellone/grpc-middleware-sentry/pull/3
45+
[PR#3]: https://github.com/johnbellone/grpc-middleware-sentry/pull/3

Diff for: client_interceptors.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// SPDX-License-Identifier: Apache-2.0
12
package grpc_sentry
23

34
import (

Diff for: config.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// SPDX-License-Identifier: Apache-2.0
12
package grpc_sentry
23

34
import "time"

Diff for: doc.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/*
2-
`grpc_sentry` provides client and server interceptors to report to Sentry.
3-
*/
1+
// SPDX-License-Identifier: Apache-2.0
2+
// `grpc_sentry` provides client and server interceptors to report to Sentry.
43
package grpc_sentry

Diff for: options.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// SPDX-License-Identifier: Apache-2.0
12
package grpc_sentry
23

34
import (

Diff for: server_interceptors.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// SPDX-License-Identifier: Apache-2.0
12
package grpc_sentry
23

34
import (

0 commit comments

Comments
 (0)