diff --git a/README.md b/README.md index ce5c13c..5e12f24 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Rectangle Packer v2.0.0 +# Rectangle Packer `RectanglePacker` is a JavaScript\PHP class designed to efficiently pack rectangles of the same aspect ratio into a defined space, tackling the NP-hard bin packing problem using a heuristic algorithm. For more information on the this problem see the [wiki](https://en.wikipedia.org/wiki/Rectangle_packing). This heuristic solves the second variant listed in the article, _**Packing identical squares in a rectilinear polygon.**_ diff --git a/package.json b/package.json index a913e72..be4f9bd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rectanglepacker", - "version": "2.0.0", + "version": "2.1.0", "description": "heuristic algorithm for efficiently packing rectangles of a fixed aspect ratio into a defined space, addressing the NP-hard bin packing problem through iterative adjustment of tile sizes and arrangement.", "main": "index.js", "directories": { diff --git a/src/RectPacker/RectPacker.php b/src/RectPacker/RectPacker.php index fe7761e..30a856f 100644 --- a/src/RectPacker/RectPacker.php +++ b/src/RectPacker/RectPacker.php @@ -5,7 +5,7 @@ use Exception; /** - * # Rectangle Packer v2.0.0 + * # Rectangle Packer v2.1.0 * by @aslamhus * * ## Introduction diff --git a/src/RectanglePacker.js b/src/RectanglePacker.js index 2dea84e..b8b8c71 100644 --- a/src/RectanglePacker.js +++ b/src/RectanglePacker.js @@ -1,5 +1,5 @@ /** - * # Rectangle Packer v2.0.0 + * # Rectangle Packer v2.1.0 * by @aslamhus * *