A bit more work on docs
This commit is contained in:
parent
5f4355017d
commit
89f819ae74
|
@ -1,7 +1,11 @@
|
|||
---
|
||||
- item:
|
||||
type: "add"
|
||||
title: "The version of a few dependencies have been bumped to the latest versions (dependent HAPI modules listed in brackets): <ul> <li>Jetty (CLI): 9.4.14.v20181114 -> 9.4.23.v20191118</li> </ul>"
|
||||
title: "The version of a few dependencies have been bumped to the latest versions
|
||||
(dependent HAPI modules listed in brackets):
|
||||
<ul>
|
||||
<li>Jetty (CLI): 9.4.14.v20181114 -> 9.4.23.v20191118</li>
|
||||
</ul>"
|
||||
- item:
|
||||
issue: "1583"
|
||||
type: "fix"
|
||||
|
|
|
@ -2,10 +2,15 @@
|
|||
|
||||
<th:block th:each="version : ${changelog.versions}">
|
||||
|
||||
# Smile CDR <th:block th:text="${version}"/> <th:block th:if="${changelog.changes.get(version).codename} != null" th:text="' (' + ${changelog.changes.get(version).codename} + ')'"/>
|
||||
# Smile CDR <th:block th:text="${version}"/> <th:block th:if="${changelog.changes.get(version).codename} != null" th:text="' (' + ${changelog.changes.get(version).codename} + ')'"/> <th:block th:if="${changelog.releaseDate} == null">(Prerelease)</th:block>
|
||||
|
||||
## Release Information
|
||||
|
||||
<th:block th:if="${changelog.changes.get(version).releaseDate} == null">
|
||||
Note: This version of HAPI FHIR is a SNAPSHOT (prerelease), meaning that it has
|
||||
not yet been released, but all changes and fixes listed here are available to try
|
||||
out as <a href="/docs/introduction/downloading_and_importing.html#snapshot">Snapshot Builds</a>.
|
||||
</th:block>
|
||||
<th:block th:if="${changelog.changes.get(version).releaseDate} != null">
|
||||
**Released:** <th:block th:text="${changelog.changes.get(version).releaseDate.getValueAsString()}"/>
|
||||
</th:block>
|
||||
|
|
|
@ -53,6 +53,8 @@ compile 'ca.uhn.hapi.fhir:hapi-fhir-structures-dstu2:${project.version}'
|
|||
compile 'ca.uhn.hapi.fhir:hapi-fhir-structures-r4:${project.version}'
|
||||
```
|
||||
|
||||
<a name="snapshot"/>
|
||||
|
||||
# Snapshot Builds
|
||||
|
||||
The HAPI FHIR project generally releases a new full software release 4 times per year, or approximately every 3 months.
|
||||
|
|
Loading…
Reference in New Issue