Skip to content

Commit c8d1617

Browse files
committed
Release v1.0.0-alpha.5
1 parent 955b0ad commit c8d1617

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

7+
## [v1.0.0-alpha.5] - 2025-06-19
8+
9+
TODO: compile from https://github.com/medizininformatik-initiative/torch/milestone/12?closed=1
10+
711
## [v1.0.0-test1] - 2024-04-23
812

913
### Added
@@ -67,5 +71,3 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6771
- **Multi FHIR Profile Handling**: Added the ability to handle multiple FHIR profiles per resource, selecting the first
6872
known profile greedily.
6973
- **Resource Redaction and Copying**: Introduced basic functionality for redacting and copying patient resources.
70-
71-

DEVELOPMENT.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,5 @@
99
* create a PR from the release branch into the main branch
1010
* merge that PR (after proper review)
1111
* create and push a tag called `v<version>` like `v1.1.0` on the main branch at the merge commit
12-
* create a new branch called `new-dev` on top of the release branch
1312
* change the version in the POM to the next SNAPSHOT version which usually increments the minor version, e.g. `1.2.0-SNAPSHOT`
14-
* merge the `new-dev` branch back into develop
1513
* create release notes on GitHub
16-
* delete the release-branch and the new-dev branch after they have been successfully merged

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<groupId>de.medizininformatikinitiative</groupId>
1515
<artifactId>torch</artifactId>
16-
<version>1.0.0-SNAPSHOT</version>
16+
<version>1.0.0-alpha.5</version>
1717

1818
<properties>
1919
<maven.compiler.source>21</maven.compiler.source>

src/main/java/de/medizininformatikinitiative/torch/rest/CapabilityStatementController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ private CapabilityStatement createCapabilityStatement() {
3535
capabilityStatement.setDate(new java.util.Date());
3636
capabilityStatement.setFhirVersion(Enumerations.FHIRVersion._4_0_1);
3737
capabilityStatement.setKind(CapabilityStatement.CapabilityStatementKind.INSTANCE);
38-
capabilityStatement.getSoftware().setName("Torch FHIR Server").setVersion("1.0.0");
38+
capabilityStatement.getSoftware().setName("Torch FHIR Server").setVersion("1.0.0-alpha.5");
3939
capabilityStatement.getImplementation().setDescription("Torch FHIR Server Implementation");
4040
logger.trace("Created basic metadata for CapabilityStatement");
4141

0 commit comments

Comments
 (0)