gatsby-plugin-newrelic 2.2.1 → 2.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CONTRIBUTING.md CHANGED
@@ -22,7 +22,7 @@ Before submitting an Issue, please search for similar ones in the
22
22
 
23
23
  A [Github workflow](https://github.com/newrelic/gatsby-plugin-newrelic/blob/main/.github/workflows/release.yml) which uses NPX [semantic-release](https://semantic-release.gitbook.io/semantic-release/usage/configuration#branches) exists to assist in publishing next versions of this plugin to NPM.
24
24
 
25
- > If you wish to publish a next version to NPM follow these steps.
25
+ > If you wish to publish a latest version to NPM follow these steps but ensure you change the tag in [package.json](package.json) to latest
26
26
 
27
27
  1. Make your changes on a local branch from main.
28
28
  2. After pulling down the code, run `git fetch && git pull` to ensure you have the latest code for main.
package/docs/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [2.2.2](https://github.com/newrelic/gatsby-plugin-newrelic/compare/v2.2.1...v2.2.2) (2022-02-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * publishes a latest version ([c2e68bb](https://github.com/newrelic/gatsby-plugin-newrelic/commit/c2e68bbe191c1ee4ea7657ecd44f953bc7213a2b))
7
+
1
8
  ## [2.2.1](https://github.com/newrelic/gatsby-plugin-newrelic/compare/v2.2.0...v2.2.1) (2022-02-08)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-plugin-newrelic",
3
- "version": "2.2.1",
3
+ "version": "2.2.2",
4
4
  "description": "Gatsby plugin for implementing the New Relic Browser agent",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -47,6 +47,6 @@
47
47
  "private": false,
48
48
  "publishConfig": {
49
49
  "registry": "https://registry.npmjs.org/",
50
- "tag": "next"
50
+ "tag": "latest"
51
51
  }
52
52
  }