|
|
@ -364,6 +364,13 @@ def UpdateRuby(): |
|
|
|
' s.version = "%s"' % GetFullVersion(rc_suffix = '.rc.'), |
|
|
|
' s.version = "%s"' % GetFullVersion(rc_suffix = '.rc.'), |
|
|
|
line)) |
|
|
|
line)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def UpdateBazel(): |
|
|
|
|
|
|
|
RewriteTextFile('protobuf_version.bzl', |
|
|
|
|
|
|
|
lambda line : re.sub( |
|
|
|
|
|
|
|
r"^PROTOBUF_VERSION = '.*'$", |
|
|
|
|
|
|
|
"PROTOBUF_VERSION = '%s'" % GetFullVersion(), |
|
|
|
|
|
|
|
line)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
UpdateConfigure() |
|
|
|
UpdateConfigure() |
|
|
|
UpdateCsharp() |
|
|
|
UpdateCsharp() |
|
|
@ -375,3 +382,4 @@ UpdateObjectiveC() |
|
|
|
UpdatePhp() |
|
|
|
UpdatePhp() |
|
|
|
UpdatePython() |
|
|
|
UpdatePython() |
|
|
|
UpdateRuby() |
|
|
|
UpdateRuby() |
|
|
|
|
|
|
|
UpdateBazel() |
|
|
|