Skip to content

Commit 6592940

Browse files
author
bot
committed
Merge branch 'release/v2.12.0' into develop
2 parents db84929 + 2de148c commit 6592940

File tree

15 files changed

+22
-16
lines changed

15 files changed

+22
-16
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88
## [unreleased]
99
### Added
1010
### Changed
11+
### Fixed
12+
13+
## [2.12.0]
14+
### Added
15+
### Changed
1116
* Added check for duplicate version IDs during Folder creation as well as check for Folder uid and if-match header id during update ([#1410](https://github.com/ehrbase/ehrbase/pull/1410))
1217
* Remove EHR from AQL if not needed for the query ([#1448](https://github.com/ehrbase/ehrbase/pull/1448))
1318
### Fixed
@@ -134,4 +139,5 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
134139
[2.9.0]: https://github.com/ehrbase/ehrbase/compare/v2.8.1...v2.9.0
135140
[2.10.0]: https://github.com/ehrbase/ehrbase/compare/v2.9.0...v2.10.0
136141
[2.11.0]: https://github.com/ehrbase/ehrbase/compare/v2.10.0...v2.11.0
137-
[unreleased]: https://github.com/ehrbase/ehrbase/compare/v2.11.0...HEAD
142+
[2.12.0]: https://github.com/ehrbase/ehrbase/compare/v2.11.0...v2.12.0
143+
[unreleased]: https://github.com/ehrbase/ehrbase/compare/v2.12.0...HEAD

api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<parent>
2727
<groupId>org.ehrbase.openehr</groupId>
2828
<artifactId>server</artifactId>
29-
<version>2.12.0-SNAPSHOT</version>
29+
<version>2.13.0-SNAPSHOT</version>
3030
</parent>
3131

3232
<artifactId>api</artifactId>

application/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<parent>
2828
<groupId>org.ehrbase.openehr</groupId>
2929
<artifactId>server</artifactId>
30-
<version>2.12.0-SNAPSHOT</version>
30+
<version>2.13.0-SNAPSHOT</version>
3131
</parent>
3232

3333
<artifactId>application</artifactId>

aql-engine/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.ehrbase.openehr</groupId>
88
<artifactId>server</artifactId>
9-
<version>2.12.0-SNAPSHOT</version>
9+
<version>2.13.0-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>aql-engine</artifactId>

bom/pom.xml

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

2525
<groupId>org.ehrbase.openehr</groupId>
2626
<artifactId>bom</artifactId>
27-
<version>2.12.0-SNAPSHOT</version>
27+
<version>2.13.0-SNAPSHOT</version>
2828
<packaging>pom</packaging>
2929

3030
<name>EHRbase</name>

cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<parent>
2727
<groupId>org.ehrbase.openehr</groupId>
2828
<artifactId>server</artifactId>
29-
<version>2.12.0-SNAPSHOT</version>
29+
<version>2.13.0-SNAPSHOT</version>
3030
</parent>
3131

3232
<artifactId>cli</artifactId>

configuration/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<parent>
2828
<groupId>org.ehrbase.openehr</groupId>
2929
<artifactId>server</artifactId>
30-
<version>2.12.0-SNAPSHOT</version>
30+
<version>2.13.0-SNAPSHOT</version>
3131
</parent>
3232

3333
<artifactId>configuration</artifactId>

jooq-pg/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>org.ehrbase.openehr</groupId>
3030
<artifactId>server</artifactId>
31-
<version>2.12.0-SNAPSHOT</version>
31+
<version>2.13.0-SNAPSHOT</version>
3232
</parent>
3333

3434
<artifactId>jooq-pg</artifactId>

plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>server</artifactId>
77
<groupId>org.ehrbase.openehr</groupId>
8-
<version>2.12.0-SNAPSHOT</version>
8+
<version>2.13.0-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
<parent>
2929
<groupId>org.ehrbase.openehr</groupId>
3030
<artifactId>bom</artifactId>
31-
<version>2.12.0-SNAPSHOT</version>
31+
<version>2.13.0-SNAPSHOT</version>
3232
<relativePath>/bom/pom.xml</relativePath>
3333
</parent>
3434

3535
<artifactId>server</artifactId>
36-
<version>2.12.0-SNAPSHOT</version>
36+
<version>2.13.0-SNAPSHOT</version>
3737
<packaging>pom</packaging>
3838
<name>ehrbase server</name>
3939
<description>EHRbase openEHR server</description>

0 commit comments

Comments
 (0)