You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,3 +63,18 @@ After providing all the necessary information (your new provider groupId, artifa
63
63
64
64
This project makes use of the [jgitver Maven plugin](https://github.com/jgitver/jgitver). When using Intellij IDEA you
65
65
must configure the project to skip the plugin altogether. [See the related issue](https://github.com/jgitver/jgitver-maven-plugin/wiki/Intellij-IDEA-configuration).
66
+
67
+
## Releasing
68
+
69
+
If the hotfix branch is ready, you needed to create an annotated tag pointing to the hotfix branch head (example below for releasing version 1.2.29):
70
+
71
+
```bash
72
+
# Ensure the tag is made on the udpated branch
73
+
git fetch -a
74
+
git checkout origin/hf-1.2.X
75
+
git tag -a 1.2.29
76
+
# Your EDITOR will open. Write a good message and save as it is used on Github as a release message
77
+
git push origin 1.2.29
78
+
```
79
+
80
+
Then you need to [create a new release](https://github.com/feedzai/feedzai-openml/releases/new) with this tag and the description according [to the previous ones](https://github.com/feedzai/feedzai-openml/releases).
0 commit comments