Skip to content

Commit 976dd71

Browse files
authored
Support multiple Post Authors (#1793)
1 parent 9d1fc67 commit 976dd71

File tree

66 files changed

+133
-70
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+133
-70
lines changed

_layouts/post.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ <h1>{{ page.title }}</h1>
1111
{% if page.subtitle %}
1212
<h2>{{ page.subtitle }}</h2>
1313
{% endif %}
14-
<div class="byline">{{ page.date | date: "%B %d, %Y" }}{% if page.author %} &middot; by {{ page.author}}{% endif %} &middot; in {% for category in page.categories %}
14+
<div class="byline">{{ page.date | date: "%B %d, %Y" }}{% if page.authors %} &middot; by {{ page.authors | join: ", " }}{% endif %} &middot; in {% for category in page.categories %}
1515
{% if category == "Elixir in Production" %}
1616
<a class="category" href="/cases.html">{{ category }}</a>
1717
{% else %}

_posts/2012-04-24-a-peek-inside-elixir-s-parallel-compiler.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: A peek inside Elixir's Parallel Compiler
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Internals
67
excerpt: Today, a parallel compiler just landed in Elixir main. The goal of the parallel compiler is to compile files in parallel, automatically detecting dependencies between files. In this blog post, we are going to take a peek into the parallel compiler internals and learn more about Erlang and Elixir in the process.
78
---

_posts/2012-05-25-elixir-v0-5-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.5.0 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: We have finally released Elixir v0.5.0! This marks the first release since the language was rewritten. In this blog post, we will discuss what we achieved during this time and what are the next steps!
78

_posts/2012-08-01-elixir-v0-6-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.6.0 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: We have finally released Elixir v0.6.0! This release includes a build tool called Mix, support for Erlang typespecs, many improvements to IEx and improved IO, File and Macro support.
78

_posts/2012-10-20-elixir-v0-7-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.7.0 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v0.7.0 is released with many improvements! Read on for more information.
78

_posts/2012-11-18-elixir-v0-7-1-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.7.1 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v0.7.1 was released to celebrate the end of a two months journey traveling around Europe, United States and Brazil talking about Elixir.
78

_posts/2012-12-04-elixir-v0-7-2-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.7.2 released
4-
author: Yurii Rashkovskii
4+
authors:
5+
- Yurii Rashkovskii
56
category: Releases
67
excerpt: Elixir v0.7.2 is released, new, improved type specifications syntax and many other improvements.
78

_posts/2013-01-27-elixir-v0-8-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.8.0 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: On the last 9th January, we celebrated two years since Elixir's first commit and to celebrate this occasion we have prepared a big release. Elixir v0.8 is out, with documentation, optimizations, bug fixes and shiny new features. Let's take a look at them!
78
---

_posts/2013-04-19-google-summer-of-code-2013.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Google Summer of Code 2013
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Announcements
67
excerpt: Elixir is taking part in Google Summer of Code 2013! Are you a student? Join us!
78
---

_posts/2013-04-29-elixir-v0-8-2-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.8.2 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v0.8.2 is released with bug fixes, better Erlang R16 support and doctests.
78
---

_posts/2013-05-02-elixir-on-xen.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir on Xen
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Announcements
67
excerpt: The Erlang on Xen team has added support for Elixir and we will tell you how you can use it!
78
---

_posts/2013-05-23-elixir-v0-9-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.9.0 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v0.9.0 is released with support for reducers, umbrella projects, faster compilation times and dropped support for R15 and earlier OTP versions.
78
---

_posts/2013-07-13-elixir-v0-10-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.10.0 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v0.10.0 is out with support for streams, sets, pretty printing and many improvements for Mix and ExUnit.
78
---

_posts/2013-08-08-elixir-design-goals.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir Design Goals
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Internals
67
excerpt: Highlight of Elixir design goals.
78
---

_posts/2013-11-05-elixir-v0-11-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.11.0 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v0.11.0 is out and it focus on improving and optimizing the patterns often used by the community.
78
---

_posts/2013-12-11-elixir-s-new-continuable-enumerators.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir's new continuable enumerators
4-
author: Peter Minten
4+
authors:
5+
- Peter Minten
56
category: Internals
67
excerpt: In 0.12.0 Elixir's enumerators have gained the ability to suspend value
78
production and to terminate early.

_posts/2013-12-15-elixir-v0-12-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.12.0 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v0.12.0 is out with improved enumerables, build patterns and welcoming a new member to our team
78
---

_posts/2014-04-21-elixir-v0-13-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.13.0 released, hex.pm and ElixirConf announced
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: "Elixir v0.13.0 comes with substantial improvements to the language: maps, structs, comprehensiona and more. It also marks the announcement of the hex.pm package manager and the announcement of ElixirConf!"
78
---

_posts/2014-06-17-elixir-v0-14-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.14.0 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: "Elixir v0.14.0 is released and expands the work on structs and bringing more of OTP right into Elixir and Mix"
78
---

_posts/2014-08-07-elixir-v0-15-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.15.0 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: "Elixir v0.15.0 introduces Elixir's Logger, Mix aliases and is the last stop before Elixir v1.0. We are also glad to welcome Alexei into our team!"
78
---

_posts/2014-09-18-elixir-v1-0-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v1.0 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v1.0 is finally out!
78
---

_posts/2015-09-28-elixir-v1-1-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v1.1 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v1.1 brings enhancements, bug fixes, performance improvements and more into Elixir.
78
---

_posts/2016-01-03-elixir-v1-2-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v1.2 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v1.2 brings enhancements, bug fixes, performance improvements and more into Elixir.
78
---

_posts/2016-06-21-elixir-v1-3-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v1.3 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v1.3 brings many improvements to the language, the compiler and its tooling, specially Mix (Elixir's build tool) and ExUnit (Elixir's test framework).
78
---

_posts/2016-07-14-announcing-genstage.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Announcing GenStage
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Announcements
67
excerpt: GenStage is a new Elixir behaviour for exchanging events with back-pressure between Elixir processes. In this blog post we will cover the background that led us to GenStage, some example use cases, and what we are exploring for future releases.
78
---

_posts/2017-01-05-elixir-v1-4-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v1.4 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v1.4 brings many improvements to the language, its standard library and the Mix build tool.
78
---

_posts/2017-07-25-elixir-v1-5-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v1.5 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v1.5 integrates with Erlang/OTP 20 and bring changes that improves the language reach and the developer experience
78
---

_posts/2017-10-31-stream-data-property-based-testing-and-data-generation-for-elixir.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: "StreamData: Property-based testing and data generation"
4-
author: Andrea Leopardi
4+
authors:
5+
- Andrea Leopardi
56
category: Announcements
67
excerpt: We are working on data generation and property-based testing for the next versions of Elixir.
78
---

_posts/2018-01-17-elixir-v1-6-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v1.6 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v1.6 includes a code formatter, defguard, dynamic supervision and new module attributes that improves code quality and the developer experience
78
---

_posts/2018-06-28-gsoc-projects.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Google Summer of Code 2018 projects
4-
author: Andrea Leopardi
4+
authors:
5+
- Andrea Leopardi
56
category: Announcements
67
excerpt: Once again Elixir is participating in Google Summer of Code 2018. In this post, we'll have a look at the active projects.
78
---

_posts/2018-07-25-elixir-v1-7-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v1.7 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v1.7 includes many quality of life improvements, focusing on documentation, Logger and ExUnit, as well as a new Elixir Core team member!
78
---

_posts/2019-01-14-elixir-v1-8-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v1.8 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v1.8 comes with many improvements at the infrastructure level, improving compilation time, speeding up common patterns, and adding features around introspection of the system.
78
---

_posts/2019-02-25-mint-a-new-http-library-for-elixir.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Mint, a new HTTP client for Elixir
4-
author: Eric Meadows-Jönsson
4+
authors:
5+
- Eric Meadows-Jönsson
56
category: Announcements
67
excerpt: Mint is a new low-level HTTP client that aims to provide a small and functional core that others can build on top.
78
---

_posts/2019-06-24-elixir-v1-9-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v1.9 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v1.9 is out with releases support, improved configuration and more.
78
---

_posts/2020-01-27-elixir-v1-10-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v1.10 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v1.10 is out with standard library, compiler, and releases improvements.
78
---

_posts/2020-08-20-embedded-elixir-at-farmbot.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Embedded Elixir at Farmbot
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Elixir in Production
67
excerpt: A case study of how Elixir is being used at Farmbot.
78
logo: /images/cases/logos/farmbot.png

_posts/2020-09-24-paas-with-elixir-at-Heroku.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: PaaS with Elixir at Heroku
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Elixir in Production
67
excerpt: A case study of how Elixir is being used at Heroku.
78
logo: /images/cases/logos/heroku.png

_posts/2020-10-06-elixir-v1-11-0-released.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v1.11 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v1.11 is out with improvements to the compiler and tighter integration with Erlang/OTP
78
---

_posts/2020-10-08-real-time-communication-at-scale-with-elixir-at-discord.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Real time communication at scale with Elixir at Discord
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Elixir in Production
67
excerpt: A case study of how Elixir is being used at Discord.
78
logo: /images/cases/logos/discord.png

_posts/2020-10-27-delivering-social-change-with-elixir-at-change.org.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Delivering social change with Elixir at Change.org
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Elixir in Production
67
excerpt: A case study of how Elixir is being used at Change.org.
78
logo: /images/cases/logos/change.png

0 commit comments

Comments
 (0)