更新CocoaPods开源库

1、手动修改本地的spec文件里面的版本号(如果有其他的修改,也得进行修改)
2、运用命令行修改远程仓库的版本号

git add .
git commit -s -m "更新版本"
git remote add origin [email protected]:sswimp/VICKit.git
git push origin master
git tag -m "更新版本" "0.1.2"
git push --tags

3.更新到pod服务器上

pod trunk push VICKit.podspec --allow-warnings

你可能感兴趣的:(更新CocoaPods开源库)