From cb9bc7338c2c6cb659446b137aed7ed988ede392 Mon Sep 17 00:00:00 2001 From: Andrew Wilkins Date: Wed, 14 Nov 2018 10:10:57 +0800 Subject: [PATCH] Update version to v1.0.0 --- CHANGELOG.md | 4 +++- README.md | 2 +- docs/index.asciidoc | 2 +- version.go | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64c68dafb..c24673e08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog -## [Unreleased](https://github.com/elastic/apm-agent-go/compare/v0.5.2...master) +## [Unreleased](https://github.com/elastic/apm-agent-go/compare/v1.0.0...master) + +## [v1.0.0](https://github.com/elastic/apm-agent-go/releases/tag/v1.0.0) - Implement v2 intake protocol (#180) - Unexport Transaction.Timestamp and Span.Timestamp (#207) diff --git a/README.md b/README.md index d6133ada1..bb1ae4dc2 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Go Report Card](https://goreportcard.com/badge/go.elastic.co/apm)](https://goreportcard.com/report/go.elastic.co/apm) [![codecov.io](https://codecov.io/github/elastic/apm-agent-go/coverage.svg?branch=master)](https://codecov.io/github/elastic/apm-agent-go?branch=master) -# apm-agent-go: APM Agent for Go (beta) +# apm-agent-go: APM Agent for Go This is the official Go package for [Elastic APM](https://www.elastic.co/solutions/apm). diff --git a/docs/index.asciidoc b/docs/index.asciidoc index 49d1274ac..d50b1263a 100644 --- a/docs/index.asciidoc +++ b/docs/index.asciidoc @@ -1,4 +1,4 @@ -= APM Go Agent Reference (Beta) += APM Go Agent Reference ifdef::env-github[] * link:./introduction.asciidoc[Introduction] diff --git a/version.go b/version.go index d4861aca4..9c1cf235a 100644 --- a/version.go +++ b/version.go @@ -2,5 +2,5 @@ package apm const ( // AgentVersion is the Elastic APM Go Agent version. - AgentVersion = "1.0.0-dev" + AgentVersion = "1.0.0" )