@@ -6,20 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [ Go module
7
7
versioning] ( https://go.dev/doc/modules/version-numbers ) .
8
8
9
- ## [ Unreleased] ( https://github.com/autometrics-dev/autometrics-go/compare/v0.8.1 ...main )
9
+ ## [ Unreleased] ( https://github.com/autometrics-dev/autometrics-go/compare/v0.8.2 ...main )
10
10
11
11
### Added
12
12
13
- - [ All] ` autometrics ` the go-generator binary accepts an ` --instrument-all ` flag, to process all
14
- functions in the file even if they do not have any annotation
15
- - [ All] ` autometrics ` the go-generator binary accepts a ` --rm-all ` flag (that overrides the ` --instrument-all ` flag)
16
- to remove autometrics from all annotated functions. This is useful to offboard autometrics after trying it:
17
- ``` bash
18
- AM_RM_ALL=true go generate ./... # Will remove all godoc and instrumentation calls
19
- sed -i ' /\/\/.*autometrics/d' ** /* .go # A similar sed command will remove all comments containing 'autometrics'
20
- # A go linter/formatter of your choice can then clean up all unused imports to remove the automatically added ones.
21
- ```
22
-
23
13
### Changed
24
14
25
15
### Deprecated
@@ -30,6 +20,20 @@ versioning](https://go.dev/doc/modules/version-numbers).
30
20
31
21
### Security
32
22
23
+ ## [ 0.8.2] ( https://github.com/autometrics-dev/autometrics-go/releases/tag/v0.8.2 ) 2023-10-20
24
+
25
+ ### Added
26
+
27
+ - [ All] ` autometrics ` the go-generator binary accepts an ` --instrument-all ` flag, to process all
28
+ functions in the file even if they do not have any annotation
29
+ - [ All] ` autometrics ` the go-generator binary accepts a ` --rm-all ` flag (that overrides the ` --instrument-all ` flag)
30
+ to remove autometrics from all annotated functions. This is useful to offboard autometrics after trying it:
31
+ ``` bash
32
+ AM_RM_ALL=true go generate ./... # Will remove all godoc and instrumentation calls
33
+ sed -i ' /\/\/.*autometrics/d' ** /* .go # A similar sed command will remove all comments containing 'autometrics'
34
+ # A go linter/formatter of your choice can then clean up all unused imports to remove the automatically added ones.
35
+ ```
36
+
33
37
## [ 0.8.1] ( https://github.com/autometrics-dev/autometrics-go/releases/tag/v0.8.1 ) 2023-10-13
34
38
35
39
### Changed
0 commit comments