Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

blog post: Julia 1.6 Highlights #1135

Merged
merged 37 commits into from
Mar 25, 2021
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
a9e7966
blog post: Julia 1.6 Highlights
StefanKarpinski Feb 3, 2021
fe67885
Apply suggestions from code review
StefanKarpinski Feb 3, 2021
a728d52
formatting tweaks
StefanKarpinski Feb 3, 2021
cf21353
Apply suggestions from code review
DilumAluthge Feb 3, 2021
5f4e8ae
Update blog/2021/02/julia-1.6-highlights.md
StefanKarpinski Feb 4, 2021
a58aa75
Merge branch 'main' into sk/julia-1.6-highlights
DilumAluthge Feb 4, 2021
3e9eb90
fixing code highlighting
tlienart Feb 4, 2021
4094dd9
Add JLL loading speedup section
staticfloat Feb 4, 2021
d0fe50d
Add mention of compile options in JLLs
staticfloat Feb 4, 2021
f9cee42
Add embeddable plotly graph of speedups
staticfloat Feb 4, 2021
47c787a
Update julia-1.6-highlights.md
staticfloat Feb 4, 2021
5d7267e
Update blog/2021/02/julia-1.6-highlights.md
staticfloat Feb 4, 2021
93111e0
Apply suggestions from code review
DilumAluthge Feb 4, 2021
9af0d06
Update julia-1.6-highlights.md
staticfloat Feb 4, 2021
a78ba4f
third times the charm
staticfloat Feb 4, 2021
6c28db5
Update julia-1.6-highlights.md
staticfloat Feb 5, 2021
0d322e6
Apply suggestions from code review
DilumAluthge Feb 5, 2021
f59d156
Add alt-text for URLs; add Elliot and me as authors :)
giordano Feb 5, 2021
a263b66
Apply suggestions from code review
DilumAluthge Feb 6, 2021
44237a6
Update julia-1.6-highlights.md
ViralBShah Feb 11, 2021
dff2fad
more on CI and latency in 1.6 highlights
JeffBezanson Feb 22, 2021
87de6e4
Apply suggestions from code review
DilumAluthge Feb 22, 2021
ef6846d
some edits
JeffBezanson Feb 22, 2021
02d92f6
Apply suggestions from code review
DilumAluthge Feb 24, 2021
2e64c66
Update julia-1.6-highlights.md
logankilpatrick Feb 26, 2021
27f44ad
Update blog/2021/02/julia-1.6-highlights.md
logankilpatrick Feb 26, 2021
1b26b5e
some typo fixes
vtjnash Mar 2, 2021
bc8560f
expand compiler latency reduction section
vtjnash Mar 2, 2021
e944c6b
Move v1.6 highlights post to March 2021 directory
giordano Mar 2, 2021
5f31f72
highlight diffeq as a large package in precomp example
IanButterworth Mar 22, 2021
80061a7
datastructures -> data structures
IanButterworth Mar 22, 2021
9550715
conclude
IanButterworth Mar 24, 2021
4829bb7
add a section about the new stacktraces
KristofferC Mar 24, 2021
b1bfdfb
add a small conclusion
KristofferC Mar 24, 2021
3009866
Add Jameson to list of authors and tentatively change date
giordano Mar 24, 2021
4575a9b
Update julia-1.6-highlights.md (wordsmithing) (#1234)
GlenHertz Mar 24, 2021
adee532
Update blog/2021/03/julia-1.6-highlights.md
giordano Mar 25, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: julia --project -e '
using Pkg; Pkg.instantiate();
using NodeJS; run(`$(npm_cmd()) install highlight.js`);
using Franklin; optimize();
using Franklin; optimize(prerender=false);
cp(joinpath("__site", "feed.xml"), joinpath("__site", "index.xml"))'
- name: Deploy (preview)
if: github.event_name == 'pull_request' && github.repository == github.event.pull_request.head.repo.full_name # if this build is a PR build and the PR is NOT from a fork
Expand Down
12 changes: 12 additions & 0 deletions _css/franklin.css
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,15 @@
background-color: #d8ffd8;
border-color: #404040;
}

/* Specific colours for code highlighting */

.hljs-metaj, .hljs-metas, .hljs-metap { font-weight: bold; }

.hljs-meta { color: #b14e8f; } /* @... */
.hljs-metaj { color: rgb(25, 179, 51); } /* julia> */
.hljs-metas { color: red; } /* shell> */
.hljs-metap { color: rgb(51, 131, 231); } /* pkg> */

.hljs-string {color: #ca4418;}
.hljs-subst { color: inherit;}
4 changes: 3 additions & 1 deletion _layout/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
<head>
<!-- parts for all pages -->
{{insert meta.html}}
{{insert head_scripts.html}}

<link rel="icon" href="/assets/infra/julia.ico">

<!-- Franklin stylesheets for generated pages -->
{{if hasmath}} {{insert head_katex.html }} {{end}}
{{if hascode}} {{insert head_highlight.html }} {{end}}

{{insert head_scripts.html}}

{{isdef title}} <title>{{fill title}}</title> {{end}}

{{ispage /blog/* /jsoc/gsoc/*}}
Expand Down
2 changes: 1 addition & 1 deletion _libs/highlight/highlight.pack.js

Large diffs are not rendered by default.

Loading