Skip to content

Commit a93e0f4

Browse files
committed
adding release 2.2!
1 parent 4d83d2b commit a93e0f4

3 files changed

Lines changed: 50 additions & 0 deletions

File tree

_layouts/post.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,19 @@ <h1 class="post-title" itemprop="name headline">{{ page.title }}</h1>
2828
{{ content }}
2929
</div>
3030

31+
<!--links to download are under archive before version 2.2-->
3132
{% if page.targz %}
3233
<span class="post-meta">
3334
<a class="no-after" href="{{ site.repo }}/archive/{{ page.targz }}" target="_blank">
3435
<i class="fa fa-3x fa-download no-after"></i></a>
3536
</span>
3637
{% endif %}
3738

39+
<!--links to download changed at version 2.2-->
40+
{% if page.version %}
41+
<a class="no-after" href="{{ site.repo }}/releases/download/{{ page.version }}/singularity-{{ page.version }}.tar.gz" target="_blank">
42+
<i class="fa fa-3x fa-download no-after"></i></a>
43+
{% endif %}
3844

3945
</article>
4046

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
title: "Singularity 2.2 release"
3+
category: releases
4+
permalink: release-2-2
5+
version: "2.2"
6+
---
7+
8+
It is with great pleasure that I announce the general availability of Singularity version 2.2! Here's what's in store for version 2.2 from your favorite Git clone, download, or distribution vendor:
9+
10+
* A complete rework of the back end source code to allow a much larger feature set, sanity, and facilitate contributions
11+
* The ability to execute completely unprivileged (does not support Singularity images) (thanks to Brian Bockelman)
12+
* Container execute by URI support (file, http, https, docker, etc..)
13+
* Integration with the Docker Registry Remote API (thanks to Vanessa Sochat):
14+
* stateless containers running ad-hoc
15+
* bootstrapping
16+
* importing
17+
* OverlayFS support - Allows for automatic creation of bind points within containers at runtime (thanks to Amanda Duffy and Jarrod Johnson)
18+
* Additional container formats supported (directories and archives)
19+
* New bootstrap definition format to handle much more complicated and intuitive recipes
20+
* All Singularity 2.x containers continue to be supported with this release.
21+
22+
Additionally I would like to extend thanks to the following organizations for being part of supporting scientific computing with Singularity:
23+
24+
- Lawrence Berkeley National Labratory (http://scs.lbl.gov/)
25+
- Stanford University (https://srcc.stanford.edu/)
26+
- San Diego Supercomputing Center (http://www.sdsc.edu/)
27+
- University of Nebraska-Lincoln (http://www.unl.edu/)
28+
- Dartmouth (http://pbs.dartmouth.edu/)
29+
- Yale University (http://www.yale.edu/)
30+
- University Of Liverpool (http://www.liverpool.ac.uk/)
31+
- Texas Advanced Computing Center (https://www.tacc.utexas.edu/)
32+
- Open MPI (http://www.openmpi.org/)
33+
- Ontropos (http://www.ontropos.com/)
34+
- Lenovo (http://www.lenovo.com/)
35+
- Intel (http://www.intel.com/)
36+
- Amazon (https://aws.amazon.com/)
37+
- R Systems (http://rsystemsinc.com/)
38+
39+
Release tip: The best way to kill an idea is to take it to a meeting.

pages/releases/releases.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,13 @@ toc: false
1818

1919
<h2><a class="post-link" href="{{ post.url | remove: "/" }}">{{ post.title }}</a></h2>
2020
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}
21+
{% if post.targz %}
2122
<a class="no-after" href="{{ site.repo }}/archive/{{ post.targz }}" target="_blank">
2223
<i class="fa fa-download no-after"></i></a>
24+
{% else %}
25+
<a class="no-after" href="{{ site.repo }}/releases/download/{{ post.version }}/singularity-{{ post.version }}.tar.gz" target="_blank">
26+
<i class="fa fa-download no-after"></i></a>
27+
{% endif %}
2328
</span>
2429
{% endfor %}
2530

0 commit comments

Comments
 (0)