Skip to content

Commit

Permalink
Release v.0.11.0 (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfvanek authored May 3, 2024
1 parent 95b477a commit cde6408
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "pg-index-health build"

allprojects {
group = "io.github.mfvanek"
version = "0.10.4"
version = "0.11.0"

repositories {
mavenLocal()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*
* @author Blohny
* @see TableNameAware
* @since 0.10.4
* @since 0.11.0
*/
@Immutable
public class Constraint implements DbObject, TableNameAware {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* A mapping to PostgreSQL constraint types.
*
* @author Blohny
* @since 0.10.4
* @since 0.11.0
* @see <a href="https://www.postgresql.org/docs/current/catalog-pg-constraint.html">pg_constraint</a>
*/
public enum ConstraintType {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Represents database index with information about size and columns.
*
* @author Ivan Vahrushev
* @since 0.10.4
* @since 0.11.0
*/
@Immutable
public class IndexWithColumns extends IndexWithSize {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* GIN-index should be used instead for such columns.
*
* @author Vadim Khizhin
* @since 0.10.4
* @since 0.11.0
*/
public class BtreeIndexesOnArrayColumnsCheckOnCluster extends AbstractCheckOnCluster<IndexWithColumns> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* Check for indexes that contain boolean values on all hosts in the cluster.
*
* @author Ivan Vahrushev
* @since 0.10.4
* @since 0.11.0
*/
public class IndexesWithBooleanCheckOnCluster extends AbstractCheckOnCluster<IndexWithColumns> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* Check for not valid constraint on all hosts in the cluster.
*
* @author Blohny
* @since 0.10.4
* @since 0.11.0
*/
public class NotValidConstraintsCheckOnCluster extends AbstractCheckOnCluster<Constraint> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* A mapper from raw data to {@link IndexWithColumns} model.
*
* @author Ivan Vahrushev
* @since 0.10.4
* @since 0.11.0
*/
public class IndexWithSingleColumnExtractor implements ResultSetExtractor<IndexWithColumns> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* GIN-index should be used instead for such columns.
*
* @author Vadim Khizhin
* @since 0.10.4
* @since 0.11.0
*/
public class BtreeIndexesOnArrayColumnsCheckOnHost extends AbstractCheckOnHost<IndexWithColumns> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* Check for indexes that contain boolean values on a specific host.
*
* @author Ivan Vahrushev
* @since 0.10.4
* @since 0.11.0
*/
public class IndexesWithBooleanCheckOnHost extends AbstractCheckOnHost<IndexWithColumns> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* Check for not valid constraints on a specific host.
*
* @author Blohny
* @since 0.10.4
* @since 0.11.0
*/
public class NotValidConstraintsCheckOnHost extends AbstractCheckOnHost<Constraint> {

Expand Down
2 changes: 1 addition & 1 deletion pg-index-health/src/main/resources
Submodule resources updated 1 files
+3 −3 README.md

0 comments on commit cde6408

Please sign in to comment.