Skip to content

Commit

Permalink
Merge pull request #763 from cicirello/remove-naive-generational-ga
Browse files Browse the repository at this point in the history
Remove the deprecated NaiveGenerationalEvolutionaryAlgorithm
  • Loading branch information
cicirello authored Nov 11, 2024
2 parents b88fdac + ba00bbc commit a110590
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 1,144 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased] - 2024-08-28
## [Unreleased] - 2024-11-11

### Added

Expand All @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Deprecated

### Removed
* NaiveGenerationalEvolutionaryAlgorithm removed. This is not a breaking change. See changelog and release notes for release 6.3.0, where it was simultaneously introduced and deprecated for reason, which also indicates what should be used instead.

### Fixed

Expand Down
32 changes: 32 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,38 @@
</plugins>
</build>
</profile>

<profile>
<id>analysis-temporary</id>
<build>
<plugins>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.8.6.5</version>
<configuration>
<htmlOutput>true</htmlOutput>
<excludeFilterFile>${session.executionRootDirectory}/spotbugs-exclude.xml</excludeFilterFile>
<plugins>
<plugin>
<groupId>com.h3xstream.findsecbugs</groupId>
<artifactId>findsecbugs-plugin</artifactId>
<version>1.13.0</version>
</plugin>
</plugins>
</configuration>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>spotbugs</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<issueManagement>
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit a110590

Please sign in to comment.