Skip to content

Commit 68a8055

Browse files
authored
chore: bump to 1.2.0 (#332)
1 parent addf991 commit 68a8055

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

distributions/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ If a distribution provides linux packages (refer to its README), you can follow
7878
##### DEB Installation
7979
```bash
8080
export collector_distro="nrdot-collector-host"
81-
export collector_version="1.1.1"
81+
export collector_version="1.2.0"
8282
export collector_arch="amd64" # or arm64
8383
export license_key="YOUR_LICENSE_KEY"
8484

@@ -91,7 +91,7 @@ sudo systemctl reload-or-restart "${collector_distro}.service"
9191
### RPM Installation
9292
```bash
9393
export collector_distro="nrdot-collector-host"
94-
export collector_version="1.1.1"
94+
export collector_version="1.2.0"
9595
export collector_arch="x86_64" # or arm64
9696
export license_key="YOUR_LICENSE_KEY"
9797

@@ -105,7 +105,7 @@ sudo systemctl reload-or-restart "${collector_distro}.service"
105105
Archives contain the binary and the default configuration which is usually `config.yaml` unless the distro packages multiple defaults, e.g. `nrdot-collector-k8s`.
106106
```bash
107107
export collector_distro="nrdot-collector-host"
108-
export collector_version="1.1.1"
108+
export collector_version="1.2.0"
109109
export collector_arch="amd64" # or arm64
110110
export license_key="YOUR_LICENSE_KEY"
111111
curl "https://github.com/newrelic/nrdot-collector-releases/releases/download/${collector_version}/${collector_distro}_${collector_version}_linux_${collector_arch}.tar.gz" --location --output collector.tar.gz

distributions/nrdot-collector-host/manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dist:
22
module: github.com/newrelic/nrdot-collector-releases/nrdot-collector-host
33
name: nrdot-collector-host
44
description: NRDOT Collector Host
5-
version: 1.1.1
5+
version: 1.2.0
66
output_path: ./_build
77
receivers:
88
- gomod: go.opentelemetry.io/collector/receiver/otlpreceiver v0.128.0

distributions/nrdot-collector-k8s/manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dist:
22
module: github.com/newrelic/nrdot-collector-releases/nrdot-collector-k8s
33
name: nrdot-collector-k8s
44
description: NRDOT Collector k8s
5-
version: 1.1.1
5+
version: 1.2.0
66
output_path: ./_build
77
receivers:
88
- gomod: go.opentelemetry.io/collector/receiver/otlpreceiver v0.128.0

scripts/bump-nrdot-version.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/bash
22
# Simple script to bump versions for new release to document all places that need to be updated
33
set -e
4-
old_version=1.1.0
5-
new_version=1.1.1
4+
old_version=1.1.1
5+
new_version=1.2.0
66

77
REPO_DIR="$( cd "$(dirname "$( dirname "${BASH_SOURCE[0]}" )")" &> /dev/null && pwd )"
88

0 commit comments

Comments
 (0)