We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd02fbf commit c5fb5a5Copy full SHA for c5fb5a5
Rakefile
@@ -665,6 +665,12 @@ namespace :py do
665
File.open(file, "w") { |f| f.puts text }
666
end
667
668
+ old_short_version = old_version.split('.')[0..1].join('.')
669
+ new_short_version = new_version.split('.')[0..1].join('.')
670
+
671
+ text = File.read('py/docs/source/conf.py').gsub(old_short_version, new_short_version)
672
+ File.open('py/docs/source/conf.py', "w") { |f| f.puts text }
673
674
Rake::Task['py:changelog'].invoke
675
676
py/docs/source/conf.py
@@ -56,7 +56,7 @@
56
# built documents.
57
#
58
# The short X.Y version.
59
-version = '4.15'
+version = '4.17'
60
# The full version, including alpha/beta/rc tags.
61
release = '4.17.2'
62
0 commit comments