Skip to content

Commit

Permalink
Fixes this releases' landing page.
Browse files Browse the repository at this point in the history
  • Loading branch information
markehammons committed Feb 4, 2022
1 parent ae3dd44 commit 15a5226
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion slinc/docs/_layouts/blog-page.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@

<h1>{{page.title}}</h1>


{% assign imageDefined = page.header-image | size %}
{% if imageDefined != 0 %}
<div style="text-align: center;">
<img src="{{ page.header-image }}"" height=32%>
</div>
{% endif %}


{{content}}
2 changes: 1 addition & 1 deletion slinc/docs/blog/_posts/2022-02-04-V0-1-1-Release.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ I'm proud to announce the first patch release of Slinc. While it doesn't contain
* A simplistic blas binding was added to the project. Check [gitlab.com/mhammons/slinc] to see it.
* Bindings are now cached, increasing performance exponentially, and allowing slinc to beat jblas by a factor of 1.5x on the same data.
* `bind` and `variadicBind` have been deprecated for `accessNative` and `accessNativeVariadic`. Please read [binding C methods](/docs/docs/usage/binding-c-methods.md) for more information.
* `Library` has been deprecated for `CLibrary` and `LibraryLocation`. Please read [binding C methods](/docs/docs/usage/binding-c-methods.md) for more information.
* `Library` has been deprecated for `CLibrary` and `LibraryLocation`. Please read [binding C methods](/docs/usage/binding-c-methods.md) for more information.
* camelCase method names are now parsed to snake_case depending on capitals placement. If you want to turn off this feature, use `RawNaming`.
* `WithPrefix` has been added, allowing to specify a function name prefix and cutting down on repeated function names.

Expand Down

0 comments on commit 15a5226

Please sign in to comment.