@@ -70,8 +70,8 @@ previous version, e.g.: `git grep 0.11`
7070The version should be set to the final release version, even when doing
7171RCs, so only needs to be set once for each release.
7272
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.
7575 * ` docs/conf.py ` - change ` release ` and ` version ` variables.
7676 * ` setup.py ` - change ` version ` variable.
7777
@@ -107,13 +107,13 @@ the version.
107107Perform a dry-run push first to make sure the correct branch and only our tag
108108is pushed.
109109
110- $ git push --dry-run --tags origin master
110+ $ git push --dry-run --tags origin v0.11.4rc # tags and branch
111111
112112Remove ` --dry-run ` when you're happy with the results.
113113
114114An alternative is to push branch and tags separately:
115115
116- $ git push --dry-run origin master
116+ $ git push --dry-run origin v0.11.4rc # the branch
117117 $ git push --dry-run --tags origin v0.11.4rc1
118118
119119
@@ -136,25 +136,10 @@ artifacts from S3 using:
136136
137137The artifacts will be downloaded to ` dl-<tag>/ ` .
138138
139-
140139## 8. Verify packages
141140
142- Create a new virtualenv:
143-
144- $ rm -rf mytestenv2
145- $ virtualenv mytestenv2
146- $ source mytestenv2/bin/activate
147-
148- Install the relevant package for your platform:
141+ $ tools/test-wheels.sh tools/dl-v0.11.4rc1
149142
150- $ pip install --no-cache-dir --find-links dl-v0.11.4rc1/ confluent-kafka
151-
152- Verify that the package works, should print the expected Python client
153- and librdkafka versions:
154-
155- $ python -c 'import confluent_kafka as ck ; print "py: {} c: {}" \
156- .format(ck.version(), ck.libversion())'
157- py: ('0.11.4', 721920) c: ('0.11.4-RC1', 722121)
158143
159144## 10. Open a release PR
160145
0 commit comments