您现在的位置是:首页 >技术教程 >CocoaPods如何发布新版本的Pod Library网站首页技术教程
CocoaPods如何发布新版本的Pod Library
简介CocoaPods如何发布新版本的Pod Library
当我们修改了一个Pod Library中的代码时,如何让依赖该库的项目能更新到最新代码,步骤如下:
假设现在修改了SamplePod(Pod名称)的代码,希望将最新版本更新到1.0.1,目前版本是1.0.0
- 修改SamplePod.podspec文件,将version由1.0.0修改为1.0.1
- 将源码修改和podspec文件修改一并提交到git仓库中,push到远端仓库
- 增加tag,tag名称需要和podspec文件中的version名称一致,push tag到远端仓库
- 发布最新版本
- pod trunk push SamplePod.podspec --allow-warnings
可能碰到的问题:
-
m1 m2版本mac,在arm版本的Terminal终端碰到如下问题:
LoadError - dlopen(/Library/Ruby/Gems/2.6.0/gems/ffi-1.15.5/lib/ffi_c.bundle, 0x0009): tried: '/Library/Ruby/Gems/2.6.0/gems/ffi-1.15.5/lib/ffi_c.bundle' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64'))
解决方案:使用rosetta模式来运行Terminal即可。
-
[!] You need to run
pod trunk registerto register a session first.
说明在Pod仓库源,本机未注册,执行
pod trunk register
按照要求注册即可。 -
[!] The spec did not pass validation, due to 3 warnings (but you can use
–allow-warningsto ignore them).
表示podspec文件lint检查未通过,直接按照说明添加
--allow-warnings
即可。
风语者!平时喜欢研究各种技术,目前在从事后端开发工作,热爱生活、热爱工作。