From b4323883379f79553e8f67c6f86fbbd8b81e38dd Mon Sep 17 00:00:00 2001 From: Gerry Agbobada Date: Fri, 1 Dec 2023 13:14:13 +0100 Subject: [PATCH] chore: release 1.0 --- CHANGELOG.md | 20 +++++++++++++------- internal/build/build.go | 2 +- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 446e739..8c3df1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,28 +6,34 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Go module versioning](https://go.dev/doc/modules/version-numbers). -## [Unreleased](https://github.com/autometrics-dev/autometrics-go/compare/v0.9.0...main) +## [Unreleased](https://github.com/autometrics-dev/autometrics-go/compare/v1.0.0...main) ### Added ### Changed +### Deprecated + +### Removed + +### Fixed + +### Security + +## [1.0.0](https://github.com/autometrics-dev/autometrics-go/releases/tag/v1.0.0) 2023-12-01 + +### Changed + - [All] The `Init` API has changed, to use arguments of type `InitOption` instead of using separate types. This means all default arguments do not need to be mentioned in the call of `Init`, and for the rest `autometrics` provides `With...` functions that allow customization. -### Deprecated - -### Removed - ### Fixed - Fix a bug where the repository provider label would overwrite the repository URL label instead of using its own label. -### Security - ## [0.9.0](https://github.com/autometrics-dev/autometrics-go/releases/tag/v0.9.0) 2023-11-17 The main goal of this release is to reach compatibility with 1.0.0 version of Autometrics diff --git a/internal/build/build.go b/internal/build/build.go index 8187de4..0a06e1d 100644 --- a/internal/build/build.go +++ b/internal/build/build.go @@ -1,7 +1,7 @@ package build // import "github.com/autometrics-dev/autometrics-go/internal/build" // Version is the version string of the build, when made available through ldflags. -var Version = "0.9.0" +var Version = "1.0.0" // User is the user who triggered this build, when made available through ldflags. var User = "n/a"