Skip to content

Commit 1e537d1

Browse files
committed
Bump version to 7.16.2.
1 parent beac4ab commit 1e537d1

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed

DEVELOPMENT.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ cd ~/dev/kibana-7.x-git/kibana
2626
git fetch --all --tags
2727

2828
# Check out the release in Kibana
29-
git checkout v7.16.1
29+
git checkout v7.16.2
3030

3131
# Switch to updated node-js if necessary
3232
nvm use
@@ -55,22 +55,22 @@ yarn kbn bootstrap
5555
yarn build
5656

5757
# Next, download, install and run the corresponding Elasticsearch
58-
mkdir ~/dev/elasticsearch-7.16.1-release
59-
cd ~/dev/elasticsearch-7.16.1-release
60-
curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.16.1-darwin-x86_64.tar.gz
61-
gunzip -c elasticsearch-7.16.1-darwin-x86_64.tar.gz | tar xopf -
62-
cd elasticsearch-7.16.1
58+
mkdir ~/dev/elasticsearch-7.16.2-release
59+
cd ~/dev/elasticsearch-7.16.2-release
60+
curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.16.2-darwin-x86_64.tar.gz
61+
gunzip -c elasticsearch-7.16.2-darwin-x86_64.tar.gz | tar xopf -
62+
cd elasticsearch-7.16.2
6363
./bin/elasticsearch
6464

6565
# Next, in another terminal tab, download and install the corresponding Kibana release to test the build
66-
mkdir ~/dev/kibana-7.16.1-release
67-
cd ~/dev/kibana-7.16.1-release/
68-
curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.16.1-darwin-x86_64.tar.gz
69-
gunzip -c kibana-7.16.1-darwin-x86_64.tar.gz | tar xopf -
70-
cd kibana-7.16.1-darwin-x86_64
66+
mkdir ~/dev/kibana-7.16.2-release
67+
cd ~/dev/kibana-7.16.2-release/
68+
curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.16.2-darwin-x86_64.tar.gz
69+
gunzip -c kibana-7.16.2-darwin-x86_64.tar.gz | tar xopf -
70+
cd kibana-7.16.2-darwin-x86_64
7171

7272
# Install the built plugin
73-
./bin/kibana-plugin install 'file:///<your-path>/kibana-7.x-git/kibana/plugins/kibana_milestones_vis/build/kibanaMilestonesVis-7.16.1.zip'
73+
./bin/kibana-plugin install 'file:///<your-path>/kibana-7.x-git/kibana/plugins/kibana_milestones_vis/build/kibanaMilestonesVis-7.16.2.zip'
7474

7575
# Start Kibana and test the UI if the plugin works.
7676
# Use Kibana's `flights` sample dataset and create a milestones visualization.
@@ -81,15 +81,15 @@ cd ~/dev/kibana-7.x-git/kibana/plugins/kibana_milestones_vis
8181
git add DEVELOPMENT.md
8282
git add README.md
8383
git add package.json
84-
git commit -m "Bump version to 7.16.1."
85-
git tag v7.16.1
84+
git commit -m "Bump version to 7.16.2."
85+
git tag v7.16.2
8686
git push origin 7.16
8787
git push --tags
8888

8989
# On Github, edit the new release at
90-
# https://github.com/walterra/kibana-milestones-vis/releases/new?tag=v7.16.1
91-
# Use `Kibana v7.16.1 compatibility release.` as the release text.
92-
# Add the build file `kibanaMilestonesVis-7.16.1.zip` to the releases' binaries.
90+
# https://github.com/walterra/kibana-milestones-vis/releases/new?tag=v7.16.2
91+
# Use `Kibana v7.16.2 compatibility release.` as the release text.
92+
# Add the build file `kibanaMilestonesVis-7.16.2.zip` to the releases' binaries.
9393

9494
# 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.
9595
rm -r ~/dev/kibana-7.x-git/kibana/plugins/plugin_tmp

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ The releases of this plugin are synced with Kibana's release cycle. In the "Asse
1717
Run the following from within your Kibana folder:
1818

1919
```
20-
bin/kibana-plugin install https://github.com/walterra/kibana-milestones-vis/releases/download/v7.16.1/kibanaMilestonesVis-7.16.1.zip
20+
bin/kibana-plugin install https://github.com/walterra/kibana-milestones-vis/releases/download/v7.16.2/kibanaMilestonesVis-7.16.2.zip
2121
```
2222

2323
### Installing by first downloading a zipped release
2424

25-
- 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.16.1/kibanaMilestonesVis-7.16.1.zip
26-
- Inside your kibana directory, run `bin/kibana-plugin install file:///<path-to-file>/kibanaMilestonesVis-7.16.1.zip`, then `npm run start`
25+
- 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.16.2/kibanaMilestonesVis-7.16.2.zip
26+
- Inside your kibana directory, run `bin/kibana-plugin install file:///<path-to-file>/kibanaMilestonesVis-7.16.2.zip`, then `npm run start`
2727

2828
## Usage
2929

kibana.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "kibanaMilestonesVis",
3-
"version": "7.16.1",
3+
"version": "7.16.2",
44
"kibanaVersion": "kibana",
55
"owner": {
66
"name": "Walter Rafelsberger <[email protected]",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "kibana-milestones-vis",
3-
"version": "7.16.1",
3+
"version": "7.16.2",
44
"private": false,
55
"description": "A d3 based timeline visualization kibana plugin.",
66
"main": "index.js",

0 commit comments

Comments
 (0)