diff options
author | Richard van der Hoff <github@rvanderhoff.org.uk> | 2016-12-22 14:43:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-22 14:43:01 +0000 |
commit | 90b36130532d2d8040b39e310d8d0d5ee22aea0a (patch) | |
tree | 26eabdea9bc04077b1621deb34b5d0cbe669dedd /README.rst | |
parent | fb91b1f18269c5b681c972dc4448858db0966c3a (diff) | |
parent | 46ad79517ec8e005bd2d1de767d3cd59ec038fe2 (diff) |
Merge pull request #36 from matrix-org/manuroe/olmkit
OLMKit
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -33,6 +33,14 @@ To build the javascript bindings, install emscripten from http://kripken.github. make js +To build the Xcode workspace for Objective-C bindings, run: + +.. code:: bash + + cd xcode + pod install + open OLMKit.xcworkspace + Release process --------------- @@ -50,6 +58,14 @@ Release process git tag $VERSION -s git push --tags + # OLMKit CocoaPod release + # Make sure the version OLMKit.podspec is the same as the git tag + # (this must be checked before git tagging) + pod spec lint OLMKit.podspec --use-libraries --allow-warnings + pod trunk push OLMKit.podspec --use-libraries --allow-warnings + # Check the pod has been successully published with: + pod search OLMKit + It's probably sensible to do the above on a release branch (``release-vx.y.z`` by convention), and merge back to master once complete. |