Skip to content

Commit ce29ac4

Browse files
committed
Merge branch 'master' into wiki-no-s
2 parents cf20c63 + 0c13769 commit ce29ac4

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

_config.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ kramdown:
7171

7272
# Release settings
7373
release:
74-
version: 4.2.1
74+
version: 4.2.0
75+
legacy: 1.9.1
7576

7677
collections:
7778
wiki:

_layouts/page.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<header>
77
<h2>{{ page.title }}</h2>
8-
<p>{{ page.categories | join ' ' }}</p>
8+
<p>{{ page.categories | join: ' ' }} {{ page.tags | join: ' ' }}</p>
99
</header>
1010

1111
<section class="wrapper style5">

_wiki/BioJava_GetStarted.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You can get the latest version of BioJava3+ from the download page
2020

2121
You can get the latest version of BioJava-legacy (a.k.a. BioJava1) from
2222
the download page [BioJava1 (v) (requires Java
23-
1.5+)](/wiki/BioJava:Download_{{current version legacy}} "wikilink").
23+
1.5+)](/wiki/BioJava:Download_{{site.release.legacy}} "wikilink").
2424

2525
You can also integrate BioJava with NetBeans IDE. To find out how follow
2626
this [link](/wiki/How_to_integrate_BioJava_in_NetBeans_IDE "wikilink").
@@ -41,17 +41,17 @@ BioJava, as of release 4.0.0 is available through Maven Central.
4141
You can add the BioJava repository by adding the following XML to your
4242
project pom.xml file:
4343

44-
44+
4545
<dependencies>
4646
...
4747
<dependency>
4848
<groupId>org.biojava</groupId>
4949
<artifactId>biojava-core</artifactId>
50-
<version>4.2.0</version>
50+
<version>{{site.release.version}}</version>
5151
</dependency>
5252
<!-- other biojava jars as needed -->
5353
</dependencies>
54-
54+
5555

5656
Installation
5757
------------

_wiki/BioJava_GetStartedLegacy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ available on many other platforms: if in doubt, contact your vendor.
3737
BioJava binaries are distributed in .jar (Java ARchive) format.
3838

3939
You can get the latest version from the download page [BioJava (requires
40-
Java 1.5+)](/wiki/BioJava:Download_{{current version legacy}} "wikilink").
40+
Java 1.5+)](/wiki/BioJava:Download_{{site.release.legacy}} "wikilink").
4141

4242
You can also integrate BioJava with NetBeans IDE. To find out how follow
4343
this [link](How_to_integrate_BioJava_in_NetBeans_IDE "wikilink").

feed.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ layout: null
88
<description>{{ site.description | xml_escape }}</description>
99
<link>{{ site.url }}{{ site.baseurl }}/</link>
1010
<atom:link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml"/>
11-
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
12-
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
11+
<pubDate>{{ site.time }}</pubDate>
12+
<lastBuildDate>{{ site.time }}</lastBuildDate>
1313
<generator>Jekyll v{{ jekyll.version }}</generator>
1414
{% for post in site.wiki limit:10 %}
1515
<item>
1616
<title>{{ post.title | xml_escape }}</title>
1717
<description>{{ post.content | xml_escape }}</description>
18-
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
18+
<pubDate>{{ post.date }}</pubDate>
1919
<link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>
2020
<guid isPermaLink="true">{{ post.url | prepend: site.baseurl | prepend: site.url }}</guid>
2121
{% for tag in post.tags %}

0 commit comments

Comments
 (0)