Commit 69f25845 authored by jaguar-bot's avatar jaguar-bot

Bump version to 0.2.6

parent 2eef3c6f
PODS:
- GMCache (0.1.0):
- TMCache (~> 2.1.0)
- GMPhobos (0.2.4):
- GMPhobos (0.2.5):
- GMCache (~> 0.1.0)
- TMCache (2.1.0)
......@@ -14,7 +14,7 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
GMCache: a7b06a2d8a5a1c7cf023055c631ba9a0cd7c39fc
GMPhobos: 7a5b2620969116656d83de6d3d6c46bc749addd2
GMPhobos: 141b18cbaacb19bcdd6cca5963de5c59b87087fc
TMCache: 95ebcc9b3c7e90fb5fd8fc3036cba3aa781c9bed
PODFILE CHECKSUM: ab2b5ff1dcd8a35fd02cced6c06c7f9477b82d69
......
{
"name": "GMPhobos",
"version": "0.2.4",
"version": "0.2.5",
"summary": "GM statistic data sdk",
"description": "GM event track sdk.",
"homepage": "http://git.gengmei.cc/gengmeiios/GMPhobos",
......@@ -10,7 +10,7 @@
},
"source": {
"git": "http://git.gengmei.cc/gengmeiios/GMPhobos.git",
"tag": "0.2.4"
"tag": "0.2.5"
},
"platforms": {
"ios": "8.0"
......
PODS:
- GMCache (0.1.0):
- TMCache (~> 2.1.0)
- GMPhobos (0.2.4):
- GMPhobos (0.2.5):
- GMCache (~> 0.1.0)
- TMCache (2.1.0)
......@@ -14,7 +14,7 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
GMCache: a7b06a2d8a5a1c7cf023055c631ba9a0cd7c39fc
GMPhobos: 7a5b2620969116656d83de6d3d6c46bc749addd2
GMPhobos: 141b18cbaacb19bcdd6cca5963de5c59b87087fc
TMCache: 95ebcc9b3c7e90fb5fd8fc3036cba3aa781c9bed
PODFILE CHECKSUM: ab2b5ff1dcd8a35fd02cced6c06c7f9477b82d69
......
......@@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.2.4</string>
<string>0.2.5</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
......
......@@ -8,7 +8,7 @@
Pod::Spec.new do |s|
s.name = "GMPhobos"
s.version = "0.2.5"
s.version = "0.2.6"
s.summary = "GM statistic data sdk"
s.description = <<-DESC
......
# Customise this file, documentation can be found here:
# https://github.com/fastlane/fastlane/tree/master/docs
# All available actions: https://github.com/fastlane/fastlane/blob/master/docs/Actions.md
# can also be listed using the `fastlane actions` command
# Change the syntax highlighting to Ruby
# All lines starting with a # are ignored when running `fastlane`
# By default, fastlane will send which actions are used
# No personal data is shared, more information on https://github.com/fastlane/enhancer
# Uncomment the following line to opt out
# opt_out_usage
# If you want to automatically update fastlane if a new version is available:
# update_fastlane
# This is the minimum version number required.
# Update this, if you use features of a newer version
fastlane_version "1.88.0"
default_platform :ios
platform :ios do
before_all do
end
desc "Release new version"
lane :release do |options|
path = "GMPhobos.podspec"
target_version = options[:version]
raise "The version is missed." if target_version.nil?
ensure_git_branch # 确认 master 分支
pod_install
pod_lib_lint(verbose: true, allow_warnings: true, sources: ["git@git.gengmei.cc:gengmeiios/GMSpecs.git","https://github.com/CocoaPods/Specs"], use_bundle_exec: true)
version_bump_podspec(path: path, version_number: target_version) # 更新 podspec
git_commit_all(message: "Bump version to #{target_version}") # 提交版本号修改
add_git_tag tag: target_version # 设置 tag
push_to_git_remote # 推送到 git 仓库
pod_push(path: path, repo: "GMSpecs", allow_warnings: true, sources: ["git@git.gengmei.cc:gengmeiios/GMSpecs.git","https://github.com/CocoaPods/Specs"]) # 提交到 CocoaPods
end
end
# More information about multiple platforms in fastlane: https://github.com/fastlane/fastlane/blob/master/docs/Platforms.md
# All available actions: https://github.com/fastlane/fastlane/blob/master/docs/Actions.md
actions_path "#{File.join(Dir.home, '.Jaguar', 'actions')}"
import "#{File.join(Dir.home, '.Jaguar', 'fastfile', 'pod_fastfile')}"
platform :ios do
desc "Release new version"
lane :release do |options|
options[:name] = 'GMPhobos'
do_release(options)
end
end
\ No newline at end of file
......@@ -3,52 +3,52 @@
<testsuite name="fastlane.lanes">
<testcase classname="fastlane.lanes" name="0: Verifying required fastlane version" time="0.000514">
<testcase classname="fastlane.lanes" name="0: Verifying required fastlane version" time="0.000512">
</testcase>
<testcase classname="fastlane.lanes" name="1: default_platform" time="0.000257">
<testcase classname="fastlane.lanes" name="1: default_platform" time="0.000259">
</testcase>
<testcase classname="fastlane.lanes" name="2: ensure_git_branch" time="0.006822">
<testcase classname="fastlane.lanes" name="2: ensure_git_branch" time="0.009493">
</testcase>
<testcase classname="fastlane.lanes" name="3: pod_install" time="10.03506">
<testcase classname="fastlane.lanes" name="3: pod_install" time="10.714165">
</testcase>
<testcase classname="fastlane.lanes" name="4: pod_lib_lint" time="17.796841">
<testcase classname="fastlane.lanes" name="4: pod_lib_lint" time="22.039992">
</testcase>
<testcase classname="fastlane.lanes" name="5: version_bump_podspec" time="0.001254">
<testcase classname="fastlane.lanes" name="5: version_bump_podspec" time="0.001131">
</testcase>
<testcase classname="fastlane.lanes" name="6: git_commit_all" time="0.037435">
<testcase classname="fastlane.lanes" name="6: git_commit_all" time="0.100325">
</testcase>
<testcase classname="fastlane.lanes" name="7: add_git_tag" time="0.014082">
<testcase classname="fastlane.lanes" name="7: add_git_tag" time="0.0119">
</testcase>
<testcase classname="fastlane.lanes" name="8: push_to_git_remote" time="2.367411">
<testcase classname="fastlane.lanes" name="8: push_to_git_remote" time="1.006795">
</testcase>
<testcase classname="fastlane.lanes" name="9: pod_push" time="17.870847">
<testcase classname="fastlane.lanes" name="9: pod_push" time="10.108738">
</testcase>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment