Skip to content

Commit 520e818

Browse files
committed
Bump version to 7.12.1.
1 parent 74c0de8 commit 520e818

File tree

5 files changed

+29
-28
lines changed

5 files changed

+29
-28
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.12.0
29+
git checkout v7.12.1
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.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.12.1-release
59+
cd ~/dev/elasticsearch-7.12.1-release
60+
curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.12.1-darwin-x86_64.tar.gz
61+
gunzip -c elasticsearch-7.12.1-darwin-x86_64.tar.gz | tar xopf -
62+
cd elasticsearch-7.12.1
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.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.12.1-release
67+
cd ~/dev/kibana-7.12.1-release/
68+
curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.12.1-darwin-x86_64.tar.gz
69+
gunzip -c kibana-7.12.1-darwin-x86_64.tar.gz | tar xopf -
70+
cd kibana-7.12.1-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.12.0.zip'
73+
./bin/kibana-plugin install 'file:///<your-path>/kibana-7.x-git/kibana/plugins/kibana_milestones_vis/build/kibanaMilestonesVis-7.12.1.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.12.0."
85-
git tag v7.12.0
84+
git commit -m "Bump version to 7.12.1."
85+
git tag v7.12.1
8686
git push origin 7.12
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.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.12.1
91+
# Use `Kibana v7.12.1 compatibility release.` as the release text.
92+
# Add the build file `kibanaMilestonesVis-7.12.1.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.12.0/kibanaMilestonesVis-7.12.0.zip
20+
bin/kibana-plugin install https://github.com/walterra/kibana-milestones-vis/releases/download/v7.12.1/kibanaMilestonesVis-7.12.1.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.12.0/kibanaMilestonesVis-7.12.0.zip
26-
- Inside your kibana directory, run `bin/kibana-plugin install file:///<path-to-file>/kibanaMilestonesVis-7.12.0.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.12.1/kibanaMilestonesVis-7.12.1.zip
26+
- Inside your kibana directory, run `bin/kibana-plugin install file:///<path-to-file>/kibanaMilestonesVis-7.12.1.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.12.0",
3+
"version": "7.12.1",
44
"kibanaVersion": "kibana",
55
"server": true,
66
"ui": true,

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"name": "kibana-milestones-vis",
3-
"version": "7.12.0",
4-
"private": false,
3+
"version": "7.12.1",
4+
"branch": "7.12",
5+
"private": true,
56
"description": "A d3 based timeline visualization kibana plugin.",
67
"main": "index.js",
78
"homepage": "https://github.com/walterra/kibana-milestones-vis",
@@ -26,7 +27,7 @@
2627
"d3": "3.5.17",
2728
"react": "^16.12.0",
2829
"react-dom": "^16.12.0",
29-
"react-milestones-vis": "^0.3.4-node14"
30+
"react-milestones-vis": "^0.3.5-node14"
3031
},
3132
"resolutions": {
3233
"lodash": "^4.17.21"

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2805,10 +2805,10 @@ react-is@^17.0.1:
28052805
resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz"
28062806
integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==
28072807

2808-
react-milestones-vis@^0.3.4-node14:
2809-
version "0.3.4-node14"
2810-
resolved "https://registry.yarnpkg.com/react-milestones-vis/-/react-milestones-vis-0.3.4-node14.tgz#8c734995ee76afebd565755999354b390fd27daf"
2811-
integrity sha512-cZK6yjljyGA3+uNKjmbXWQUZx2V4SBFihQi5Gc6mMLSlTEqs5YnLJJRztWcjTSqCZ+qVoEM1slw+KwAF5nXA8Q==
2808+
react-milestones-vis@^0.3.5-node14:
2809+
version "0.3.5-node14"
2810+
resolved "https://registry.yarnpkg.com/react-milestones-vis/-/react-milestones-vis-0.3.5-node14.tgz#457f1f7f4b05df6a419543094605cfbee0fb1df8"
2811+
integrity sha512-5rXMIq//++gJSAE0AVNj/rkPxXVN1KxbX0/czAxiRiECUtZEIBM1VM3a8Gq+bpQpLPyIfQaX9OpoJTxu9WSwuQ==
28122812
dependencies:
28132813
d3-milestones "^1.2.2"
28142814

0 commit comments

Comments
 (0)