Skip to content

Commit

Permalink
Update version for podspec to not include dot (protocolbuffers#6111)
Browse files Browse the repository at this point in the history
  • Loading branch information
TeBoring authored May 9, 2019
1 parent 9f604ac commit 65fed3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Protobuf.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# dependent projects use the :git notation to refer to the library.
Pod::Spec.new do |s|
s.name = 'Protobuf'
s.version = '3.8.0-rc.1'
s.version = '3.8.0-rc1'
s.summary = 'Protocol Buffers v.3 runtime library for Objective-C.'
s.homepage = 'https://github.com/protocolbuffers/protobuf'
s.license = '3-Clause BSD License'
Expand Down
2 changes: 1 addition & 1 deletion update_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def UpdateObjectiveC():
RewriteTextFile('Protobuf.podspec',
lambda line : re.sub(
r"^ s.version = '.*'$",
" s.version = '%s'" % GetFullVersion(rc_suffix = '-rc.'),
" s.version = '%s'" % GetFullVersion(rc_suffix = '-rc'),
line))


Expand Down

0 comments on commit 65fed3f

Please sign in to comment.