From f0b5abb67b8516f0f58b2191f1e8cafb44e9bc8c Mon Sep 17 00:00:00 2001 From: Walter Rafelsberger Date: Wed, 7 Apr 2021 15:19:26 +0200 Subject: [PATCH] Bump version to 6.8.12. --- DEVELOPMENT.md | 24 ++++++++++++------------ README.md | 6 +++--- package.json | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 263d163..09b35ca 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -40,7 +40,7 @@ cd ~/dev/kibana-6.x-git/kibana git fetch --all --tags # Check out the release in Kibana -git checkout v6.8.11 +git checkout v6.8.12 # Switch to updated node-js if necessary nvm use @@ -70,14 +70,14 @@ yarn build # Next, download and install the corresponding Kibana release to test the build via # https://www.elastic.co/downloads/past-releases/kibana-6-8-8 -mkdir ~/dev/kibana-6.8.11-release -cd ~/dev/kibana-6.8.11-release/ -curl -O https://artifacts.elastic.co/downloads/kibana/kibana-6.8.11-darwin-x86_64.tar.gz -gunzip -c kibana-6.8.11-darwin-x86_64.tar.gz | tar xopf - -cd kibana-6.8.11-darwin-x86_64 +mkdir ~/dev/kibana-6.8.12-release +cd ~/dev/kibana-6.8.12-release/ +curl -O https://artifacts.elastic.co/downloads/kibana/kibana-6.8.12-darwin-x86_64.tar.gz +gunzip -c kibana-6.8.12-darwin-x86_64.tar.gz | tar xopf - +cd kibana-6.8.12-darwin-x86_64 # Install the built plugin -./bin/kibana-plugin install 'file:////kibana-6.x-git/kibana-extra/kibana-milestones-vis/build/kibana-milestones-vis-6.8.11.zip' +./bin/kibana-plugin install 'file:////kibana-6.x-git/kibana-extra/kibana-milestones-vis/build/kibana-milestones-vis-6.8.12.zip' # Start Kibana and test the UI if the plugin works. # Use Kibana's `flights` sample dataset and create a milestones visualization. @@ -88,15 +88,15 @@ cd ~/dev/kibana-6.x-git/kibana-extra/kibana-milestones-vis git add DEVELOPMENT.md git add README.md git add package.json -git commit -m "Bump version to 6.8.11." -git tag v6.8.11 +git commit -m "Bump version to 6.8.12." +git tag v6.8.12 git push origin 6.8 git push --tags # On Github, edit the new release at -# https://github.com/walterra/kibana-milestones-vis/releases/new?tag=v6.8.11 -# Use `Kibana v6.8.11 compatibility release.` as the release text. -# Add the build file `kibana-milestones-vis-6.8.11.zip` to the releases' binaries. +# https://github.com/walterra/kibana-milestones-vis/releases/new?tag=v6.8.12 +# Use `Kibana v6.8.12 compatibility release.` as the release text. +# Add the build file `kibana-milestones-vis-6.8.12.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-6.x-git/kibana-extra/plugin_tmp diff --git a/README.md b/README.md index 281e430..fc4a7b9 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/v6.8.11/kibana-milestones-vis-6.8.11.zip +bin/kibana-plugin install https://github.com/walterra/kibana-milestones-vis/releases/download/v6.8.12/kibana-milestones-vis-6.8.12.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/v6.8.11/kibana-milestones-vis-6.8.11.zip -- Inside your kibana directory, run `bin/kibana-plugin install file:////kibana-milestones-vis-6.8.11.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/v6.8.12/kibana-milestones-vis-6.8.12.zip +- Inside your kibana directory, run `bin/kibana-plugin install file:////kibana-milestones-vis-6.8.12.zip`, then `npm run start` ## Usage diff --git a/package.json b/package.json index 83a9585..cb82e47 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kibana-milestones-vis", - "version": "6.8.11", + "version": "6.8.12", "description": "A d3 based timeline visualization kibana plugin.", "main": "index.js", "homepage": "https://github.com/elastic/kibana-milestones-vis", @@ -16,7 +16,7 @@ "Walter Rafelsberger " ], "kibana": { - "version": "6.8.11", + "version": "6.8.12", "templateVersion": "1.0.0" }, "scripts": {