@@ -26,7 +26,7 @@ cd ~/dev/kibana-7.x-git/kibana
26
26
git fetch --all --tags
27
27
28
28
# Check out the release in Kibana
29
- git checkout v7.12 .0
29
+ git checkout v7.13 .0
30
30
31
31
# Switch to updated node-js if necessary
32
32
nvm use
@@ -38,8 +38,8 @@ yarn kbn bootstrap
38
38
node scripts/generate_plugin plugin_tmp
39
39
40
40
# Once the plugin was created, you need to compare the two following files and if necessary update the dependencies in your `package.json`
41
- # kibana-extra/kibana-milestones-vis /package.json
42
- # kibana-extra /plugin_tmp/package.json
41
+ # plugins/kibana_milestones_vis /package.json
42
+ # plugins /plugin_tmp/package.json
43
43
44
44
# After checking/updating `package.json`, run bootstrap inside your plugin's directory
45
45
cd plugins/kibana_milestones_vis
@@ -55,22 +55,22 @@ yarn kbn bootstrap
55
55
yarn build
56
56
57
57
# Next, download, install and run the corresponding Elasticsearch
58
- mkdir ~ /dev/elasticsearch-7.12 .0-release
59
- cd ~ /dev/elasticsearch-7.12 .0-release
60
- curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.12 .0-darwin-x86_64.tar.gz
61
- gunzip -c elasticsearch-7.12 .0-darwin-x86_64.tar.gz | tar xopf -
62
- cd elasticsearch-7.12 .0
58
+ mkdir ~ /dev/elasticsearch-7.13 .0-release
59
+ cd ~ /dev/elasticsearch-7.13 .0-release
60
+ curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.13 .0-darwin-x86_64.tar.gz
61
+ gunzip -c elasticsearch-7.13 .0-darwin-x86_64.tar.gz | tar xopf -
62
+ cd elasticsearch-7.13 .0
63
63
./bin/elasticsearch
64
64
65
65
# Next, in another terminal tab, download and install the corresponding Kibana release to test the build
66
- mkdir ~ /dev/kibana-7.12 .0-release
67
- cd ~ /dev/kibana-7.12 .0-release/
68
- curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.12 .0-darwin-x86_64.tar.gz
69
- gunzip -c kibana-7.12 .0-darwin-x86_64.tar.gz | tar xopf -
70
- cd kibana-7.12 .0-darwin-x86_64
66
+ mkdir ~ /dev/kibana-7.13 .0-release
67
+ cd ~ /dev/kibana-7.13 .0-release/
68
+ curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.13 .0-darwin-x86_64.tar.gz
69
+ gunzip -c kibana-7.13 .0-darwin-x86_64.tar.gz | tar xopf -
70
+ cd kibana-7.13 .0-darwin-x86_64
71
71
72
72
# Install the built plugin
73
- ./bin/kibana-plugin install ' file:///<your-path>/kibana-7.x-git/kibana/plugins/kibana_milestones_vis/build/kibanaMilestonesVis-7.12 .0.zip'
73
+ ./bin/kibana-plugin install ' file:///<your-path>/kibana-7.x-git/kibana/plugins/kibana_milestones_vis/build/kibanaMilestonesVis-7.13 .0.zip'
74
74
75
75
# Start Kibana and test the UI if the plugin works.
76
76
# 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
81
81
git add DEVELOPMENT.md
82
82
git add README.md
83
83
git add package.json
84
- git commit -m " Bump version to 7.12 .0."
85
- git tag v7.12 .0
86
- git push origin 7.11
84
+ git commit -m " Bump version to 7.13 .0."
85
+ git tag v7.13 .0
86
+ git push origin 7.13
87
87
git push --tags
88
88
89
89
# On Github, edit the new release at
90
- # https://github.com/walterra/kibana-milestones-vis/releases/new?tag=v7.12 .0
91
- # Use `Kibana v7.12 .0 compatibility release.` as the release text.
92
- # Add the build file `kibanaMilestonesVis-7.12 .0.zip` to the releases' binaries.
90
+ # https://github.com/walterra/kibana-milestones-vis/releases/new?tag=v7.13 .0
91
+ # Use `Kibana v7.13 .0 compatibility release.` as the release text.
92
+ # Add the build file `kibanaMilestonesVis-7.13 .0.zip` to the releases' binaries.
93
93
94
94
# 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.
95
95
rm -r ~ /dev/kibana-7.x-git/kibana/plugins/plugin_tmp
0 commit comments