Skip to content

Commit 853e2f3

Browse files
authored
chore: release 1.0 (#84)
1 parent ebefae1 commit 853e2f3

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,34 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Go module
77
versioning](https://go.dev/doc/modules/version-numbers).
88

9-
## [Unreleased](https://github.com/autometrics-dev/autometrics-go/compare/v0.9.0...main)
9+
## [Unreleased](https://github.com/autometrics-dev/autometrics-go/compare/v1.0.0...main)
1010

1111
### Added
1212

1313
### Changed
1414

15+
### Deprecated
16+
17+
### Removed
18+
19+
### Fixed
20+
21+
### Security
22+
23+
## [1.0.0](https://github.com/autometrics-dev/autometrics-go/releases/tag/v1.0.0) 2023-12-01
24+
25+
### Changed
26+
1527
- [All] The `Init` API has changed, to use arguments of type `InitOption` instead of using
1628
separate types. This means all default arguments do not need to be mentioned in the
1729
call of `Init`, and for the rest `autometrics` provides `With...` functions that allow
1830
customization.
1931

20-
### Deprecated
21-
22-
### Removed
23-
2432
### Fixed
2533

2634
- Fix a bug where the repository provider label would overwrite the repository URL label
2735
instead of using its own label.
2836

29-
### Security
30-
3137
## [0.9.0](https://github.com/autometrics-dev/autometrics-go/releases/tag/v0.9.0) 2023-11-17
3238

3339
The main goal of this release is to reach compatibility with 1.0.0 version of Autometrics

internal/build/build.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package build // import "github.com/autometrics-dev/autometrics-go/internal/build"
22

33
// Version is the version string of the build, when made available through ldflags.
4-
var Version = "0.9.0"
4+
var Version = "1.0.0"
55

66
// User is the user who triggered this build, when made available through ldflags.
77
var User = "n/a"

0 commit comments

Comments
 (0)