Skip to content

Commit

Permalink
Merge pull request #45 from starnowski/feature/merge_0_3_to_main
Browse files Browse the repository at this point in the history
Feature/merge 0 3 to main
  • Loading branch information
starnowski authored Jan 4, 2024
2 parents 10ad9ab + b64f745 commit 36d6e15
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 10 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ https://keepachangelog.com/en/1.0.0/
https://www.markdownguide.org/basic-syntax/

* [Unreleased](#unreleased)
* [0.3.0](#030---2024-01-04)
* [0.2.2](#022---2023-08-08)
* [0.2.1](#021---2023-07-26)
* [0.2.0](#020---2023-07-23)
Expand All @@ -17,6 +18,14 @@ https://www.markdownguide.org/basic-syntax/

## [Unreleased]

## [0.3.0] - 2024-01-04

### Changed

- Upgraded Hibernate version to 6.4 for hibernate6 module [43](https://github.com/starnowski/posmulten-hibernate/issues/43)
- Type com.github.starnowski.posmulten.hibernate.hibernate6.CurrentTenantIdentifierResolverImpl implements org.hibernate.context.spi.CurrentTenantIdentifierResolver<java.lang.String> interface [43](https://github.com/starnowski/posmulten-hibernate/issues/43)
- Type com.github.starnowski.posmulten.hibernate.hibernate6.connection.SharedSchemaMultiTenantConnectionProvider implements org.hibernate.engine.jdbc.connections.spi.AbstractMultiTenantConnectionProvider<java.lang.String> interface [43](https://github.com/starnowski/posmulten-hibernate/issues/43)

## [0.2.2] - 2023-08-08

### Added
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ For Hibernate 5 add project to your pom.xml
<dependency>
<groupId>com.github.starnowski.posmulten.hibernate</groupId>
<artifactId>hibernate5</artifactId>
<version>0.2.2</version>
<version>0.3.0</version>
</dependency>

<!-- hibernate dependency -->
Expand All @@ -72,14 +72,14 @@ For Hibernate 6 add project to your pom.xml
<dependency>
<groupId>com.github.starnowski.posmulten.hibernate</groupId>
<artifactId>hibernate6</artifactId>
<version>0.2.2</version>
<version>0.3.0</version>
</dependency>

<!-- hibernate dependency -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>6.2.5.Final</version>
<version>6.4.0.Final</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.starnowski.posmulten.hibernate</groupId>
<artifactId>parent</artifactId>
<version>0.3.0-SNAPSHOT</version>
<version>0.4.0-SNAPSHOT</version>
</parent>

<artifactId>common</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion hibernate5-functional-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>com.github.starnowski.posmulten.hibernate</groupId>
<version>0.3.0-SNAPSHOT</version>
<version>0.4.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion hibernate5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>com.github.starnowski.posmulten.hibernate</groupId>
<version>0.3.0-SNAPSHOT</version>
<version>0.4.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion hibernate6-functional-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.starnowski.posmulten.hibernate</groupId>
<artifactId>parent</artifactId>
<version>0.3.0-SNAPSHOT</version>
<version>0.4.0-SNAPSHOT</version>
</parent>

<artifactId>hibernate6-functional-tests</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion hibernate6/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.starnowski.posmulten.hibernate</groupId>
<artifactId>parent</artifactId>
<version>0.3.0-SNAPSHOT</version>
<version>0.4.0-SNAPSHOT</version>
</parent>

<artifactId>hibernate6</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.starnowski.posmulten.hibernate</groupId>
<artifactId>parent</artifactId>
<version>0.3.0-SNAPSHOT</version>
<version>0.4.0-SNAPSHOT</version>
<modules>
<module>hibernate5</module>
<module>test-utils</module>
Expand Down
2 changes: 1 addition & 1 deletion test-utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>com.github.starnowski.posmulten.hibernate</groupId>
<version>0.3.0-SNAPSHOT</version>
<version>0.4.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit 36d6e15

Please sign in to comment.