Skip to content

Commit

Permalink
Prepare major release 7.0.0 (#737)
Browse files Browse the repository at this point in the history
* bump major version number

* bump copyright year in docs

* bump major version in docs

* Update CHANGELOG.md

Signed-off-by: Vincent A. Cicirello <[email protected]>

* Update CHANGELOG.md

---------

Signed-off-by: Vincent A. Cicirello <[email protected]>
  • Loading branch information
cicirello authored Aug 1, 2024
1 parent 46451da commit aa684c0
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 18 deletions.
34 changes: 23 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,32 @@ 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-06-10

**BREAKING CHANGES: Due to breaking changes, the next release will be a major release.**
## [Unreleased] - 2024-08-01

### Added

### Changed

### Deprecated

### Removed

### Fixed

### Dependencies

### CI/CD

### Other


## [7.0.0] - 2024-08-01

### Changed (BREAKING)
* Replaced public constructors of HeuristicSolutionGenerator with factory methods (BREAKING CHANGE).
* Replaced public constructors of HeuristicPermutationGenerator with factory methods (BREAKING CHANGE).

### Changed (non-breaking)
* Refactored and improved the following classes to utilize new functionality from the dependencies on core and rho-mu:
* BinPacking
* CycleAlphaMutation
Expand All @@ -24,12 +43,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* WindowLimitedScrambleMutation
* WindowLimitedUndoableScrambleMutation
* Refactored null reference checks.
* Replaced public constructors of HeuristicSolutionGenerator with factory methods (BREAKING CHANGE).
* Replaced public constructors of HeuristicPermutationGenerator with factory methods (BREAKING CHANGE).

### Deprecated

### Removed

### Fixed
* Fixed double comparison in SolutionCostPair.compareTo(SolutionCostPair).
Expand Down Expand Up @@ -58,15 +71,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Dependencies
* Bumped org.cicirello:rho-mu from 3.1.1 to 4.1.0
* Bump org.cicirello:core from 2.5.0 to 2.7.0
* Bump org.cicirello:jpt from 5.1.0 to 6.0.0

### CI/CD
* Integrated SpotBugs into build process.
* Integrated Find Security Bugs into build process.
* Removed support for JitPack builds, include removing JitPack configuration, workflow steps, etc.
* Discontinued publishing a `jar-with-dependencies` (only a breaking change for those manually downloading library).

### Other


## [6.4.0] - 2023-07-28

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ See the following table for a mapping between library version and minimum suppor

| version | Java requirements |
| --- | --- |
| 5.x.y to 6.x.y | Java 17+ |
| 3.x.y to 4.x.y | Java 11+ |
| 1.x.y to 2.x.y | Java 8+ |
| 5.w.x to 7.y.z | Java 17+ |
| 3.w.x to 4.y.z | Java 11+ |
| 1.w.x to 2.y.z | Java 8+ |

## Versioning Scheme

Expand Down Expand Up @@ -142,7 +142,7 @@ the version number with the version that you want to use.
<dependency>
<groupId>org.cicirello</groupId>
<artifactId>chips-n-salsa</artifactId>
<version>6.0.0</version>
<version>7.0.0</version>
</dependency>
```

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>org.cicirello</groupId>
<artifactId>chips-n-salsa</artifactId>
<version>6-SNAPSHOT</version>
<version>7-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Chips-n-Salsa</name>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Chips-n-Salsa: A library of parallel self-adaptive local search algorithms.
* Copyright (C) 2002-2023 Vincent A. Cicirello
* Copyright (C) 2002-2024 Vincent A. Cicirello
*
* This file is part of Chips-n-Salsa (https://chips-n-salsa.cicirello.org/).
*
Expand All @@ -24,7 +24,7 @@
* <h2>Chips-n-Salsa - A Java library of customizable, hybridizable, iterative, parallel,
* stochastic, and self-adaptive local search algorithms</h2>
*
* <p>Copyright &copy; 2002-2023 <a href="https://www.cicirello.org/" target=_top>Vincent A.
* <p>Copyright &copy; 2002-2024 <a href="https://www.cicirello.org/" target=_top>Vincent A.
* Cicirello</a>.
*
* <p><a href="https://doi.org/10.21105/joss.02448"><img
Expand Down

0 comments on commit aa684c0

Please sign in to comment.