File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -70,8 +70,8 @@ previous version, e.g.: `git grep 0.11`
70
70
The version should be set to the final release version, even when doing
71
71
RCs, so only needs to be set once for each release.
72
72
73
- * ` confluent_kafka/src/confluent_kafka.c ` - in the ` version() ` function,
74
- change both the string and the hex-representation.
73
+ * ` confluent_kafka/src/confluent_kafka.h ` - update the ` CFL_VERSION `
74
+ ` CFL_VERSION_STR ` , change both the string and the hex-representation.
75
75
* ` docs/conf.py ` - change ` release ` and ` version ` variables.
76
76
* ` setup.py ` - change ` version ` variable.
77
77
@@ -107,13 +107,13 @@ the version.
107
107
Perform a dry-run push first to make sure the correct branch and only our tag
108
108
is pushed.
109
109
110
- $ git push --dry-run --tags origin master
110
+ $ git push --dry-run --tags origin v0.11.4rc # tags and branch
111
111
112
112
Remove ` --dry-run ` when you're happy with the results.
113
113
114
114
An alternative is to push branch and tags separately:
115
115
116
- $ git push --dry-run origin master
116
+ $ git push --dry-run origin v0.11.4rc # the branch
117
117
$ git push --dry-run --tags origin v0.11.4rc1
118
118
119
119
You can’t perform that action at this time.
0 commit comments