From 59ceae886a7942a070a1d4e882b58c8279f9af38 Mon Sep 17 00:00:00 2001 From: Walter Rafelsberger Date: Tue, 13 Apr 2021 01:56:33 +0200 Subject: [PATCH] Bump version to 7.6.1. --- DEVELOPMENT.md | 34 +++++++++++++++++----------------- README.md | 6 +++--- package.json | 6 +++--- 3 files changed, 23 insertions(+), 23 deletions(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 5b6b972..8ec3693 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -40,7 +40,7 @@ cd ~/dev/kibana-7.6-git/kibana git fetch --all --tags # Check out the release in Kibana -git checkout v7.6.0 +git checkout v7.6.1 # Switch to updated node-js if necessary nvm use @@ -69,22 +69,22 @@ yarn kbn bootstrap yarn build # Next, download, install and run the corresponding Elasticsearch -mkdir ~/dev/elasticsearch-7.6.0-release -cd ~/dev/elasticsearch-7.6.0-release -curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.6.0-darwin-x86_64.tar.gz -gunzip -c elasticsearch-7.6.0-darwin-x86_64.tar.gz | tar xopf - -cd elasticsearch-7.6.0 +mkdir ~/dev/elasticsearch-7.6.1-release +cd ~/dev/elasticsearch-7.6.1-release +curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.6.1-darwin-x86_64.tar.gz +gunzip -c elasticsearch-7.6.1-darwin-x86_64.tar.gz | tar xopf - +cd elasticsearch-7.6.1 ./bin/elasticsearch # Next, in another terminal tab, download and install the corresponding Kibana release to test the build -mkdir ~/dev/kibana-7.6.0-release -cd ~/dev/kibana-7.6.0-release/ -curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.6.0-darwin-x86_64.tar.gz -gunzip -c kibana-7.6.0-darwin-x86_64.tar.gz | tar xopf - -cd kibana-7.6.0-darwin-x86_64 +mkdir ~/dev/kibana-7.6.1-release +cd ~/dev/kibana-7.6.1-release/ +curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.6.1-darwin-x86_64.tar.gz +gunzip -c kibana-7.6.1-darwin-x86_64.tar.gz | tar xopf - +cd kibana-7.6.1-darwin-x86_64 # Install the built plugin -./bin/kibana-plugin install 'file:////kibana-7.6-git/kibana/plugins/kibana_milestones_vis/build/kibana_milestones_vis-7.6.0.zip' +./bin/kibana-plugin install 'file:////kibana-7.6-git/kibana/plugins/kibana_milestones_vis/build/kibana_milestones_vis-7.6.1.zip' # Start Kibana and test the UI if the plugin works. # Use Kibana's `flights` sample dataset and create a milestones visualization. @@ -95,15 +95,15 @@ cd ~/dev/kibana-7.6-git/kibana/plugins/kibana_milestones_vis git add DEVELOPMENT.md git add README.md git add package.json -git commit -m "Bump version to 7.6.0." -git tag v7.6.0 +git commit -m "Bump version to 7.6.1." +git tag v7.6.1 git push origin 7.6 git push --tags # On Github, edit the new release at -# https://github.com/walterra/kibana-milestones-vis/releases/new?tag=v7.6.0 -# Use `Kibana v7.6.0 compatibility release.` as the release text. -# Add the build file `kibana_milestones_vis-7.6.0.zip` to the releases' binaries. +# https://github.com/walterra/kibana-milestones-vis/releases/new?tag=v7.6.1 +# Use `Kibana v7.6.1 compatibility release.` as the release text. +# Add the build file `kibana_milestones_vis-7.6.1.zip` to the releases' binaries. # Almost done! Before the next release, a little cleanup: Just delete the temporary plugin you create so you can create another one for comparison for the next release. rm -r ~/dev/kibana-7.6-git/kibana/plugins/plugin_tmp diff --git a/README.md b/README.md index 90c8708..b145fe5 100644 --- a/README.md +++ b/README.md @@ -17,13 +17,13 @@ The releases of this plugin are synced with Kibana's release cycle. In the "Asse Run the following from within your Kibana folder: ``` -bin/kibana-plugin install https://github.com/walterra/kibana-milestones-vis/releases/download/v7.6.0/kibana_milestones_vis-7.6.0.zip +bin/kibana-plugin install https://github.com/walterra/kibana-milestones-vis/releases/download/v7.6.1/kibana_milestones_vis-7.6.1.zip ``` ### Installing by first downloading a zipped release -- Head over to https://github.com/walterra/kibana-milestones-vis/releases and download the ZIP of the version you want to use, e.g. https://github.com/walterra/kibana-milestones-vis/releases/download/v7.6.0/kibana_milestones_vis-7.6.0.zip -- Inside your kibana directory, run `bin/kibana-plugin install file:////kibana_milestones_vis-7.6.0.zip`, then `npm run start` +- Head over to https://github.com/walterra/kibana-milestones-vis/releases and download the ZIP of the version you want to use, e.g. https://github.com/walterra/kibana-milestones-vis/releases/download/v7.6.1/kibana_milestones_vis-7.6.1.zip +- Inside your kibana directory, run `bin/kibana-plugin install file:////kibana_milestones_vis-7.6.1.zip`, then `npm run start` ## Usage diff --git a/package.json b/package.json index d844ffb..aac77dd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kibana_milestones_vis", - "version": "7.6.0", + "version": "7.6.1", "description": "A d3 based timeline visualization kibana plugin.", "main": "index.js", "homepage": "https://github.com/walterra/kibana-milestones-vis", @@ -16,7 +16,7 @@ "Walter Rafelsberger " ], "kibana": { - "version": "7.6.0", + "version": "7.6.1", "templateVersion": "1.0.0" }, "scripts": { @@ -57,7 +57,7 @@ "d3-milestones": "^1.1.0" }, "engines": { - "node": "10.18.0", + "node": "10.19.0", "yarn": "^1.21.1" } }