From 12a440d5569e5f24fbdda31d8512b1737b1e72cc Mon Sep 17 00:00:00 2001 From: Camden Cheek Date: Fri, 15 Nov 2019 10:24:15 -0500 Subject: [PATCH] Remove windows definition from linux --- CHANGELOG.md | 4 ++++ Makefile-package.mk | 2 +- src/kafka.go | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f956702f..6c0c9da1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## 2.5.1 - 2019-11-15 +### Fixed +- Remove windows definition from linux build + ## 2.5.0 - 2019-11-14 ### Added - Support for attempting multiple connection protocols to broker diff --git a/Makefile-package.mk b/Makefile-package.mk index 101e186b..93d8dfbd 100644 --- a/Makefile-package.mk +++ b/Makefile-package.mk @@ -36,7 +36,7 @@ prep-pkg-env: @echo "=== Main === [ prep-pkg-env ]: adding built binaries and configuration and definition files..." @cp $(BINS_DIR)/$(BINARY_NAME) $(SOURCE_DIR)/var/db/newrelic-infra/newrelic-integrations/bin @chmod 755 $(SOURCE_DIR)/var/db/newrelic-infra/newrelic-integrations/bin/* - @cp ./*-definition.yml $(SOURCE_DIR)/var/db/newrelic-infra/newrelic-integrations/ + @cp ./kafka-definition.yml $(SOURCE_DIR)/var/db/newrelic-infra/newrelic-integrations/ @chmod 644 $(SOURCE_DIR)/var/db/newrelic-infra/newrelic-integrations/*-definition.yml @cp ./*-config.yml.sample $(SOURCE_DIR)/etc/newrelic-infra/integrations.d/ @chmod 644 $(SOURCE_DIR)/etc/newrelic-infra/integrations.d/*-config.yml.sample diff --git a/src/kafka.go b/src/kafka.go index 19e53754..03bac4e5 100644 --- a/src/kafka.go +++ b/src/kafka.go @@ -18,7 +18,7 @@ import ( const ( integrationName = "com.newrelic.kafka" - integrationVersion = "2.5.0" + integrationVersion = "2.5.1" ) func main() {