Skip to content

Commit 5e5e469

Browse files
committed
Update Julia documentation (1.6.0)
1 parent 9be4243 commit 5e5e469

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

assets/javascripts/templates/pages/about_tmpl.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ credits = [
433433
'https://raw.githubusercontent.com/jquery/api.jqueryui.com/master/LICENSE.txt'
434434
], [
435435
'Julia',
436-
'2009-2020 Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and other contributors',
436+
'2009-2021 Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and other contributors',
437437
'MIT',
438438
'https://raw.githubusercontent.com/JuliaLang/julia/master/LICENSE.md'
439439
], [

lib/docs/scrapers/julia.rb

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,21 @@ class Julia < UrlScraper
77

88

99
options[:attribution] = <<-HTML
10-
&copy; 2009&ndash;2020 Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and other contributors<br>
10+
&copy; 2009&ndash;2021 Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and other contributors<br>
1111
Licensed under the MIT License.
1212
HTML
1313

14+
version '1.6' do
15+
self.release = '1.6.0'
16+
self.base_url = "https://docs.julialang.org/en/v#{release}/"
17+
self.type = 'julia'
18+
19+
html_filters.push 'julia/entries', 'julia/clean_html'
20+
21+
options[:container] = '.docs-main'
22+
options[:only_patterns] = [/\Amanual\//, /\Abase\//, /\Astdlib\//]
23+
end
24+
1425
version '1.5' do
1526
self.release = '1.5.3'
1627
self.base_url = "https://docs.julialang.org/en/v#{release}/"

0 commit comments

Comments
 (0)