Skip to content

Commit

Permalink
🔖 Bump and release modules: [components, release]
Browse files Browse the repository at this point in the history
🔖 Bump components and release modules to version 11.24.4

Signed-off-by: palexdev <[email protected]>
  • Loading branch information
palexdev committed May 29, 2024
1 parent 5b00ad9 commit 485ab3e
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jdk=11
testJdk=17

# Modules
mfx=11.24.3
mfx=11.24.4
mfxcore=11.9.0
mfxeffects=11.3.1
mfxlocalization=11.1.0
Expand Down
6 changes: 6 additions & 0 deletions modules/components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

[//]: ##[Unreleased]

## [11.24.4] - 29-05-2024

### Fixed

- Fixed mistake of previous release

## [11.24.3] - 29-05-2024

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion modules/components/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Maven #
#--------------------------------------#
POM_ARTIFACT_ID=mfxcomponents
VERSION_NAME=11.24.3
VERSION_NAME=11.24.4

POM_NAME=mfxcomponents
POM_DESCRIPTION=Material Design/Modern components for JavaFX
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ private Path resolveImport(Theme theme, String line) {
.split(" ");
String path = split[1];
Map<String, Path> deployed = Deployer.instance().getDeployed(theme);
return Optional.of(deployed).map(m -> m.get(path)).orElse(null);
return Optional.ofNullable(deployed).map(m -> m.get(path)).orElse(null);
}

/**
Expand All @@ -326,7 +326,7 @@ private Path resolveImport(Theme theme, String line) {
private Path resolveResource(Theme theme, String url) {
String name = getResourceName(url);
Map<String, Path> deployed = Deployer.instance().getDeployed(theme);
return Optional.of(deployed).map(m -> m.get(name)).orElse(null);
return Optional.ofNullable(deployed).map(m -> m.get(name)).orElse(null);
}

/**
Expand Down
4 changes: 4 additions & 0 deletions modules/release/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

[//]: ##[Unreleased]

## [11.24.4] - 29-05-2024

- Bump components and release modules to version 11.24.4

## [11.24.3] - 29-05-2024

- Bump components and release modules to version 11.24.3
Expand Down
2 changes: 1 addition & 1 deletion modules/release/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Maven #
#--------------------------------------#
POM_ARTIFACT_ID=materialfx-all
VERSION_NAME=11.24.3
VERSION_NAME=11.24.4

POM_NAME=materialfx-all
POM_DESCRIPTION=Material Design/Modern components for JavaFX, now packed as a single Jar
Expand Down

0 comments on commit 485ab3e

Please sign in to comment.